MutableEnumSet<T extends Enum> class abstract

Implementers

Constructors

MutableEnumSet()

Properties

hashCode int
The hash code for this object.
no setteroverride
rawValue int
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

add(T value) bool
addAll(Iterable<T> elements) → void
addAllFromEnumSet(MutableEnumSet<T> other) → void
clear() → void
contains(T value) bool
containsAll(Iterable<T> other) bool
containsAllFromEnumSet(MutableEnumSet<T> other) bool
difference(MutableEnumSet<T> other) MutableEnumSet<T>
intersection(MutableEnumSet<T> other) MutableEnumSet<T>
isEmpty() bool
isNotEmpty() bool
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove(T value) bool
removeAll(Iterable<T> elements) → void
removeAllFromEnumSet(MutableEnumSet<T> other) → void
toEnumSet() EnumSet<T>
toSet() Set<T>
toString() String
A string representation of this object.
inherited
union(MutableEnumSet<T> other) MutableEnumSet<T>

Operators

operator ==(Object other) bool
The equality operator.
override