Package org.codehaus.groovy.util
Enum Class ReferenceType
- All Implemented Interfaces:
Serializable,Comparable<ReferenceType>,Constable
Supported reference implementations for managed references.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionStores referents strongly until cleared explicitly.Stores referents as phantom references for post-mortem cleanup only.Stores referents as softly reachable values that may be cleared under memory pressure.Stores referents as weakly reachable values that may be cleared once weakly reachable. -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract <T,V extends Finalizable>
Reference<T,V> createReference(T value, V handler, ReferenceQueue queue) Creates a reference of this type for the supplied referent and handler.static ReferenceTypeReturns the enum constant of this class with the specified name.static ReferenceType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SOFT
Stores referents as softly reachable values that may be cleared under memory pressure. -
WEAK
Stores referents as weakly reachable values that may be cleared once weakly reachable. -
PHANTOM
Stores referents as phantom references for post-mortem cleanup only. -
HARD
Stores referents strongly until cleared explicitly.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
createReference
protected abstract <T,V extends Finalizable> Reference<T,V> createReference(T value, V handler, ReferenceQueue queue) Creates a reference of this type for the supplied referent and handler.- Type Parameters:
T- the referent typeV- the handler type- Parameters:
value- the referent to wraphandler- the cleanup handler associated with the referencequeue- the queue to notify for queue-backed references- Returns:
- the created reference
-