EnumSet<T extends Enum> class abstract

Implementers

Constructors

EnumSet([int rawValue = 0])
const

Properties

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

Methods

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

Operators

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