public enum VanillaFilter extends Enum<VanillaFilter> implements MethodFilter
| Enum Constant and Description |
|---|
ADD_ATOMIC_VALUE |
ADD_VALUE |
BUSY_LOCK_VALUE |
COMPARE_AND_SWAP_VALUE |
GET_VALUE |
SET_VALUE |
TRY_LOCK_NANOS_VALUE |
TRY_LOCK_VALUE |
UNLOCK_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static VanillaFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VanillaFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOfmatches, nameForpublic static final VanillaFilter GET_VALUE
public static final VanillaFilter SET_VALUE
public static final VanillaFilter ADD_VALUE
public static final VanillaFilter ADD_ATOMIC_VALUE
public static final VanillaFilter COMPARE_AND_SWAP_VALUE
public static final VanillaFilter TRY_LOCK_VALUE
public static final VanillaFilter TRY_LOCK_NANOS_VALUE
public static final VanillaFilter BUSY_LOCK_VALUE
public static final VanillaFilter UNLOCK_VALUE
public static VanillaFilter[] values()
for (VanillaFilter c : VanillaFilter.values()) System.out.println(c);
public static VanillaFilter valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All Rights Reserved.