- All Implemented Interfaces:
Serializable
,Comparable<VarHandle.AccessMode>
,Constable
- Enclosing class:
- VarHandle
public static enum VarHandle.AccessMode extends Enum<VarHandle.AccessMode>
The set of access modes that specify how a variable, referenced by a
VarHandle, is accessed.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description 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
COMPARE_AND_SET
The access mode whose access is specified by the corresponding methodVarHandle.compareAndSet
GET
The access mode whose access is specified by the corresponding methodVarHandle.get
GET_ACQUIRE
The access mode whose access is specified by the corresponding methodVarHandle.getAcquire
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_AND
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAnd
GET_AND_BITWISE_AND_ACQUIRE
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAndAcquire
GET_AND_BITWISE_AND_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAndRelease
GET_AND_BITWISE_OR
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOr
GET_AND_BITWISE_OR_ACQUIRE
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOrAcquire
GET_AND_BITWISE_OR_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOrRelease
GET_AND_BITWISE_XOR
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXor
GET_AND_BITWISE_XOR_ACQUIRE
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXorAcquire
GET_AND_BITWISE_XOR_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXorRelease
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_OPAQUE
The access mode whose access is specified by the corresponding methodVarHandle.getOpaque
GET_VOLATILE
The access mode whose access is specified by the corresponding methodVarHandle.getVolatile
SET
The access mode whose access is specified by the corresponding methodVarHandle.set
SET_OPAQUE
The access mode whose access is specified by the corresponding methodVarHandle.setOpaque
SET_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.setRelease
SET_VOLATILE
The access mode whose access is specified by the corresponding methodVarHandle.setVolatile
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_PLAIN
The access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetPlain
WEAK_COMPARE_AND_SET_RELEASE
The access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetRelease
-
Method Summary
Modifier and Type Method Description String
methodName()
Returns theVarHandle
signature-polymorphic method name associated with thisAccessMode
value.static VarHandle.AccessMode
valueFromMethodName(String methodName)
Returns theAccessMode
value associated with the specifiedVarHandle
signature-polymorphic method name.static VarHandle.AccessMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static VarHandle.AccessMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
methodName
Returns theVarHandle
signature-polymorphic method name associated with thisAccessMode
value.- Returns:
- the signature-polymorphic method name
- See Also:
valueFromMethodName(java.lang.String)
-
valueFromMethodName
Returns theAccessMode
value associated with the specifiedVarHandle
signature-polymorphic method name.- Parameters:
methodName
- the signature-polymorphic method name- Returns:
- the
AccessMode
value - Throws:
IllegalArgumentException
- if there is noAccessMode
value associated with method name (indicating the method name does not correspond to aVarHandle
signature-polymorphic method name).- See Also:
methodName()
-