public static enum ConcurrentReferenceHashMap.Option extends Enum<ConcurrentReferenceHashMap.Option>
| Enum Constant and Description | 
|---|
| IDENTITY_COMPARISONSIndicates that referential-equality (== instead of .equals()) should
 be used when locating keys. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ConcurrentReferenceHashMap.Option | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ConcurrentReferenceHashMap.Option[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ConcurrentReferenceHashMap.Option IDENTITY_COMPARISONS
IdentityHashMappublic static ConcurrentReferenceHashMap.Option[] values()
for (ConcurrentReferenceHashMap.Option c : ConcurrentReferenceHashMap.Option.values()) System.out.println(c);
public static ConcurrentReferenceHashMap.Option 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 © 2016 Hazelcast, Inc.. All Rights Reserved.