- java.lang.Object
- 
- java.lang.Enum<VarHandle.AccessMode>
- 
- java.lang.invoke.VarHandle.AccessMode
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<VarHandle.AccessMode>
 - 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.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description COMPARE_AND_EXCHANGEThe access mode whose access is specified by the corresponding methodVarHandle.compareAndExchangeCOMPARE_AND_EXCHANGE_ACQUIREThe access mode whose access is specified by the corresponding methodVarHandle.compareAndExchangeAcquireCOMPARE_AND_EXCHANGE_RELEASEThe access mode whose access is specified by the corresponding methodVarHandle.compareAndExchangeReleaseCOMPARE_AND_SETThe access mode whose access is specified by the corresponding methodVarHandle.compareAndSetGETThe access mode whose access is specified by the corresponding methodVarHandle.getGET_ACQUIREThe access mode whose access is specified by the corresponding methodVarHandle.getAcquireGET_AND_ADDThe access mode whose access is specified by the corresponding methodVarHandle.getAndAddGET_AND_ADD_ACQUIREThe access mode whose access is specified by the corresponding methodVarHandle.getAndAddAcquireGET_AND_ADD_RELEASEThe access mode whose access is specified by the corresponding methodVarHandle.getAndAddReleaseGET_AND_BITWISE_ANDThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAndGET_AND_BITWISE_AND_ACQUIREThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAndAcquireGET_AND_BITWISE_AND_RELEASEThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAndReleaseGET_AND_BITWISE_ORThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOrGET_AND_BITWISE_OR_ACQUIREThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOrAcquireGET_AND_BITWISE_OR_RELEASEThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOrReleaseGET_AND_BITWISE_XORThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXorGET_AND_BITWISE_XOR_ACQUIREThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXorAcquireGET_AND_BITWISE_XOR_RELEASEThe access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXorReleaseGET_AND_SETThe access mode whose access is specified by the corresponding methodVarHandle.getAndSetGET_AND_SET_ACQUIREThe access mode whose access is specified by the corresponding methodVarHandle.getAndSetAcquireGET_AND_SET_RELEASEThe access mode whose access is specified by the corresponding methodVarHandle.getAndSetReleaseGET_OPAQUEThe access mode whose access is specified by the corresponding methodVarHandle.getOpaqueGET_VOLATILEThe access mode whose access is specified by the corresponding methodVarHandle.getVolatileSETThe access mode whose access is specified by the corresponding methodVarHandle.setSET_OPAQUEThe access mode whose access is specified by the corresponding methodVarHandle.setOpaqueSET_RELEASEThe access mode whose access is specified by the corresponding methodVarHandle.setReleaseSET_VOLATILEThe access mode whose access is specified by the corresponding methodVarHandle.setVolatileWEAK_COMPARE_AND_SETThe access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetWEAK_COMPARE_AND_SET_ACQUIREThe access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetAcquireWEAK_COMPARE_AND_SET_PLAINThe access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetPlainWEAK_COMPARE_AND_SET_RELEASEThe access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetRelease
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringmethodName()Returns theVarHandlesignature-polymorphic method name associated with thisAccessModevalue.static VarHandle.AccessModevalueFromMethodName(String methodName)Returns theAccessModevalue associated with the specifiedVarHandlesignature-polymorphic method name.static VarHandle.AccessModevalueOf(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 Detail- 
GETpublic static final VarHandle.AccessMode GET The access mode whose access is specified by the corresponding methodVarHandle.get
 - 
SETpublic static final VarHandle.AccessMode SET The access mode whose access is specified by the corresponding methodVarHandle.set
 - 
GET_VOLATILEpublic static final VarHandle.AccessMode GET_VOLATILE The access mode whose access is specified by the corresponding methodVarHandle.getVolatile
 - 
SET_VOLATILEpublic static final VarHandle.AccessMode SET_VOLATILE The access mode whose access is specified by the corresponding methodVarHandle.setVolatile
 - 
GET_ACQUIREpublic static final VarHandle.AccessMode GET_ACQUIRE The access mode whose access is specified by the corresponding methodVarHandle.getAcquire
 - 
SET_RELEASEpublic static final VarHandle.AccessMode SET_RELEASE The access mode whose access is specified by the corresponding methodVarHandle.setRelease
 - 
GET_OPAQUEpublic static final VarHandle.AccessMode GET_OPAQUE The access mode whose access is specified by the corresponding methodVarHandle.getOpaque
 - 
SET_OPAQUEpublic static final VarHandle.AccessMode SET_OPAQUE The access mode whose access is specified by the corresponding methodVarHandle.setOpaque
 - 
COMPARE_AND_SETpublic static final VarHandle.AccessMode COMPARE_AND_SET The access mode whose access is specified by the corresponding methodVarHandle.compareAndSet
 - 
COMPARE_AND_EXCHANGEpublic static final VarHandle.AccessMode COMPARE_AND_EXCHANGE The access mode whose access is specified by the corresponding methodVarHandle.compareAndExchange
 - 
COMPARE_AND_EXCHANGE_ACQUIREpublic static final VarHandle.AccessMode COMPARE_AND_EXCHANGE_ACQUIRE The access mode whose access is specified by the corresponding methodVarHandle.compareAndExchangeAcquire
 - 
COMPARE_AND_EXCHANGE_RELEASEpublic static final VarHandle.AccessMode COMPARE_AND_EXCHANGE_RELEASE The access mode whose access is specified by the corresponding methodVarHandle.compareAndExchangeRelease
 - 
WEAK_COMPARE_AND_SET_PLAINpublic static final VarHandle.AccessMode WEAK_COMPARE_AND_SET_PLAIN The access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetPlain
 - 
WEAK_COMPARE_AND_SETpublic static final VarHandle.AccessMode WEAK_COMPARE_AND_SET The access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSet
 - 
WEAK_COMPARE_AND_SET_ACQUIREpublic static final VarHandle.AccessMode WEAK_COMPARE_AND_SET_ACQUIRE The access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetAcquire
 - 
WEAK_COMPARE_AND_SET_RELEASEpublic static final VarHandle.AccessMode WEAK_COMPARE_AND_SET_RELEASE The access mode whose access is specified by the corresponding methodVarHandle.weakCompareAndSetRelease
 - 
GET_AND_SETpublic static final VarHandle.AccessMode GET_AND_SET The access mode whose access is specified by the corresponding methodVarHandle.getAndSet
 - 
GET_AND_SET_ACQUIREpublic static final VarHandle.AccessMode GET_AND_SET_ACQUIRE The access mode whose access is specified by the corresponding methodVarHandle.getAndSetAcquire
 - 
GET_AND_SET_RELEASEpublic static final VarHandle.AccessMode GET_AND_SET_RELEASE The access mode whose access is specified by the corresponding methodVarHandle.getAndSetRelease
 - 
GET_AND_ADDpublic static final VarHandle.AccessMode GET_AND_ADD The access mode whose access is specified by the corresponding methodVarHandle.getAndAdd
 - 
GET_AND_ADD_ACQUIREpublic static final VarHandle.AccessMode GET_AND_ADD_ACQUIRE The access mode whose access is specified by the corresponding methodVarHandle.getAndAddAcquire
 - 
GET_AND_ADD_RELEASEpublic static final VarHandle.AccessMode GET_AND_ADD_RELEASE The access mode whose access is specified by the corresponding methodVarHandle.getAndAddRelease
 - 
GET_AND_BITWISE_ORpublic static final VarHandle.AccessMode GET_AND_BITWISE_OR The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOr
 - 
GET_AND_BITWISE_OR_RELEASEpublic static final VarHandle.AccessMode GET_AND_BITWISE_OR_RELEASE The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOrRelease
 - 
GET_AND_BITWISE_OR_ACQUIREpublic static final VarHandle.AccessMode GET_AND_BITWISE_OR_ACQUIRE The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseOrAcquire
 - 
GET_AND_BITWISE_ANDpublic static final VarHandle.AccessMode GET_AND_BITWISE_AND The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAnd
 - 
GET_AND_BITWISE_AND_RELEASEpublic static final VarHandle.AccessMode GET_AND_BITWISE_AND_RELEASE The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAndRelease
 - 
GET_AND_BITWISE_AND_ACQUIREpublic static final VarHandle.AccessMode GET_AND_BITWISE_AND_ACQUIRE The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseAndAcquire
 - 
GET_AND_BITWISE_XORpublic static final VarHandle.AccessMode GET_AND_BITWISE_XOR The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXor
 - 
GET_AND_BITWISE_XOR_RELEASEpublic static final VarHandle.AccessMode GET_AND_BITWISE_XOR_RELEASE The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXorRelease
 - 
GET_AND_BITWISE_XOR_ACQUIREpublic static final VarHandle.AccessMode GET_AND_BITWISE_XOR_ACQUIRE The access mode whose access is specified by the corresponding methodVarHandle.getAndBitwiseXorAcquire
 
- 
 - 
Method Detail- 
valuespublic static VarHandle.AccessMode[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VarHandle.AccessMode c : VarHandle.AccessMode.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static VarHandle.AccessMode valueOf(String name) 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 name
- NullPointerException- if the argument is null
 
 - 
methodNamepublic String methodName() Returns theVarHandlesignature-polymorphic method name associated with thisAccessModevalue.- Returns:
- the signature-polymorphic method name
- See Also:
- valueFromMethodName(java.lang.String)
 
 - 
valueFromMethodNamepublic static VarHandle.AccessMode valueFromMethodName(String methodName) Returns theAccessModevalue associated with the specifiedVarHandlesignature-polymorphic method name.- Parameters:
- methodName- the signature-polymorphic method name
- Returns:
- the AccessModevalue
- Throws:
- IllegalArgumentException- if there is no- AccessModevalue associated with method name (indicating the method name does not correspond to a- VarHandlesignature-polymorphic method name).
- See Also:
- methodName()
 
 
- 
 
-