|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ConcurrentReferenceHashMap.ReferenceType>
com.hazelcast.util.ConcurrentReferenceHashMap.ReferenceType
public static enum ConcurrentReferenceHashMap.ReferenceType
An option specifying which Java reference type should be used to refer to a key and/or value.
| Enum Constant Summary | |
|---|---|
SOFT
Indicates a SoftReference should be used |
|
STRONG
Indicates a normal Java strong reference should be used |
|
WEAK
Indicates a WeakReference should be used |
|
| Method Summary | |
|---|---|
static ConcurrentReferenceHashMap.ReferenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ConcurrentReferenceHashMap.ReferenceType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ConcurrentReferenceHashMap.ReferenceType STRONG
public static final ConcurrentReferenceHashMap.ReferenceType WEAK
WeakReference should be used
public static final ConcurrentReferenceHashMap.ReferenceType SOFT
SoftReference should be used
| Method Detail |
|---|
public static ConcurrentReferenceHashMap.ReferenceType[] values()
for (ConcurrentReferenceHashMap.ReferenceType c : ConcurrentReferenceHashMap.ReferenceType.values()) System.out.println(c);
public static ConcurrentReferenceHashMap.ReferenceType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||