Enum Class AccessFlags
- All Implemented Interfaces:
Serializable, Comparable<AccessFlags>, Constable
Flags that specify variants of
ArrayDataAccess underlying primitive
types. DIRTY means that an access implements Dirty.
VOLATILE means that an access implements VolatileAccess.-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final Set<AccessFlags> private static final Set<AccessFlags> private static final Set<AccessFlags> private static final Set<AccessFlags> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Set<AccessFlags> fromBooleansDirtyVolatile(boolean dirtyAccesses, boolean volatileAccesses) static Set<AccessFlags> static Set<AccessFlags> setOf()static Set<AccessFlags> setOf(AccessFlags f1) static Set<AccessFlags> setOf(AccessFlags... flags) static Set<AccessFlags> setOf(AccessFlags f1, AccessFlags f2) static AccessFlagsReturns the enum constant of this class with the specified name.static AccessFlags[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DIRTY
-
VOLATILE
-
-
Field Details
-
flags_DIRTY_VOLATILE
-
flags_DIRTY
-
flags_VOLATILE
-
flags_NONE
-
-
Constructor Details
-
AccessFlags
private AccessFlags()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
ofAccess
-
setOf
-
setOf
-
setOf
-
setOf
-
fromBooleansDirtyVolatile
public static Set<AccessFlags> fromBooleansDirtyVolatile(boolean dirtyAccesses, boolean volatileAccesses)
-