Enum Class VarHandle.AccessMode
- All Implemented Interfaces:
Serializable, Comparable<VarHandle.AccessMode>, Constable
- Enclosing class:
VarHandle
The set of access modes that specify how a variable, referenced by a
VarHandle, is accessed.
- Since:
- 9
-
Nested Class Summary
Nested classes/interfaces declared in class Enum
Enum.EnumDesc<E>Modifier and TypeClassDescriptionstatic final classEnum.EnumDesc<E extends Enum<E>>A nominal descriptor for anenumconstant. -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe access mode whose access is specified by the corresponding methodVarHandle.compareAndExchangeThe access mode whose access is specified by the corresponding methodVarHandle.compareAndExchangeAcquireThe access mode whose access is specified by the corresponding methodVarHandle.compareAndExchangeReleaseThe access mode whose access is specified by the corresponding methodVarHandle.compareAndSetThe access mode whose access is specified by the corresponding methodVarHandle.getThe access mode whose access is specified by the corresponding methodVarHandle.getAcquireThe access mode whose access is specified by the corresponding methodVarHandle.getAndAddThe access mode whose access is specified by the corresponding methodVarHandle.getAndAddAcquireThe access mode whose access is specified by the corresponding methodVarHandle.getAndAddReleaseThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAndThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAndAcquireThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAndReleaseThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOrThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOrAcquireThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOrReleaseThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXorThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXorAcquireThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXorReleaseThe access mode whose access is specified by the corresponding methodVarHandle.getAndSetThe access mode whose access is specified by the corresponding methodVarHandle.getAndSetAcquireThe access mode whose access is specified by the corresponding methodVarHandle.getAndSetReleaseThe access mode whose access is specified by the corresponding methodVarHandle.getOpaqueThe access mode whose access is specified by the corresponding methodVarHandle.getVolatileThe access mode whose access is specified by the corresponding methodVarHandle.setThe access mode whose access is specified by the corresponding methodVarHandle.setOpaqueThe access mode whose access is specified by the corresponding methodVarHandle.setReleaseThe access mode whose access is specified by the corresponding methodVarHandle.setVolatileThe access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetThe access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetAcquireThe access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetPlainThe access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetRelease -
Method Summary
Modifier and TypeMethodDescriptionReturns theVarHandlesignature-polymorphic method name associated with thisAccessModevalue.static VarHandle.AccessModevalueFromMethodName(String methodName) Returns theAccessModevalue associated with the specifiedVarHandlesignature-polymorphic method name.static VarHandle.AccessModeReturns the enum constant of this class with the specified name.static VarHandle.AccessMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods declared in class Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfModifier and TypeMethodDescriptionprotected final Objectclone()Throws CloneNotSupportedException.final intCompares this enum with the specified object for order.Returns an enum descriptorEnumDescfor this instance, if one can be constructed, or an emptyOptionalif one cannot be.final booleanReturns true if the specified object is equal to this enum constant.protected final voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization has been deprecated for removal.final Class<VarHandle.AccessMode> Returns the Class object corresponding to this enum constant's enum type.final inthashCode()Returns a hash code for this enum constant.final Stringname()Returns the name of this enum constant, exactly as declared in its enum declaration.final intordinal()Returns the ordinal of this enumeration constant (its position in its enum declaration, where the initial constant is assigned an ordinal of zero).toString()Returns the name of this enum constant, as contained in the declaration.static <T extends Enum<T>>
TReturns the enum constant of the specified enum class with the specified name.Methods declared in class Object
getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionfinal Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Enum Constant Details
-
GET
The access mode whose access is specified by the corresponding methodVarHandle.get -
SET
The access mode whose access is specified by the corresponding methodVarHandle.set -
GET_VOLATILE
The access mode whose access is specified by the corresponding methodVarHandle.getVolatile -
SET_VOLATILE
The access mode whose access is specified by the corresponding methodVarHandle.setVolatile -
GET_ACQUIRE
The access mode whose access is specified by the corresponding methodVarHandle.getAcquire -
SET_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.setRelease -
GET_OPAQUE
The access mode whose access is specified by the corresponding methodVarHandle.getOpaque -
SET_OPAQUE
The access mode whose access is specified by the corresponding methodVarHandle.setOpaque -
COMPARE_AND_SET
The access mode whose access is specified by the corresponding methodVarHandle.compareAndSet -
COMPARE_AND_EXCHANGE
The access mode whose access is specified by the corresponding methodVarHandle.compareAndExchange -
COMPARE_AND_EXCHANGE_ACQUIRE
The access mode whose access is specified by the corresponding methodVarHandle.compareAndExchangeAcquire -
COMPARE_AND_EXCHANGE_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.compareAndExchangeRelease -
WEAK_COMPARE_AND_SET_PLAIN
The access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetPlain -
WEAK_COMPARE_AND_SET
The access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSet -
WEAK_COMPARE_AND_SET_ACQUIRE
The access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetAcquire -
WEAK_COMPARE_AND_SET_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetRelease -
GET_AND_SET
The access mode whose access is specified by the corresponding methodVarHandle.getAndSet -
GET_AND_SET_ACQUIRE
The access mode whose access is specified by the corresponding methodVarHandle.getAndSetAcquire -
GET_AND_SET_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.getAndSetRelease -
GET_AND_ADD
The access mode whose access is specified by the corresponding methodVarHandle.getAndAdd -
GET_AND_ADD_ACQUIRE
The access mode whose access is specified by the corresponding methodVarHandle.getAndAddAcquire -
GET_AND_ADD_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.getAndAddRelease -
GET_AND_BITWISE_OR
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOr -
GET_AND_BITWISE_OR_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOrRelease -
GET_AND_BITWISE_OR_ACQUIRE
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOrAcquire -
GET_AND_BITWISE_AND
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAnd -
GET_AND_BITWISE_AND_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAndRelease -
GET_AND_BITWISE_AND_ACQUIRE
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAndAcquire -
GET_AND_BITWISE_XOR
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXor -
GET_AND_BITWISE_XOR_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXorRelease -
GET_AND_BITWISE_XOR_ACQUIRE
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXorAcquire
-
-
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
-
methodName
Returns theVarHandlesignature-polymorphic method name associated with thisAccessModevalue.- Returns:
- the signature-polymorphic method name
- See Also:
-
valueFromMethodName
Returns theAccessModevalue associated with the specifiedVarHandlesignature-polymorphic method name.- Parameters:
methodName- the signature-polymorphic method name- Returns:
- the
AccessModevalue - Throws:
IllegalArgumentException- if there is noAccessModevalue associated with method name (indicating the method name does not correspond to aVarHandlesignature-polymorphic method name).- See Also:
-