public enum ReferenceType extends Enum<ReferenceType>
Modifier and Type | Method and Description |
---|---|
<T> FlexReference<? extends T> |
toSafeReference(T in)
Converts the passed-in object to a reference of this constant's type
|
<T> FlexReference<? extends T> |
toSafeReference(T in,
ReferenceQueue<? extends T> queue)
Converts the passed-in object to a reference of this constant's type
|
<T> Reference<? extends T> |
toUnsafeReference(T in)
Converts the passed-in object to a reference of this constant's type
|
<T> Reference<? extends T> |
toUnsafeReference(T in,
ReferenceQueue<? extends T> queue)
Converts the passed-in object to a reference of this constant's type
|
static ReferenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReferenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReferenceType STRONG
public static final ReferenceType WEAK
public static final ReferenceType SOFT
public static final ReferenceType PHANTOM
public static ReferenceType[] values()
for (ReferenceType c : ReferenceType.values()) System.out.println(c);
public static 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 nameNullPointerException
- if the argument is nullpublic <T> FlexReference<? extends T> toSafeReference(T in)
T
- The type of the objectin
- The object to hold a reference forFlexReference
to the relevant objectpublic <T> Reference<? extends T> toUnsafeReference(T in)
T
- The type of the objectin
- The object to hold a reference forReference
to the relevant object.
Note however: Any strong references will be
a wrapped WeakReference
, and caution should be taken to
not pass in the reference to anything which expects a
WeakReference
public <T> FlexReference<? extends T> toSafeReference(T in, ReferenceQueue<? extends T> queue)
T
- The type of the objectin
- The object to hold a reference forqueue
- A ReferenceQueue
to register with the objectFlexReference
to the relevant objectpublic <T> Reference<? extends T> toUnsafeReference(T in, ReferenceQueue<? extends T> queue)
T
- The type of the objectin
- The object to hold a reference forqueue
- A ReferenceQueue
to register with the object
Note however: Any strong references will be
a wrapped WeakReference
, and caution should be taken to
not pass in the reference to anything which expects a
WeakReference
Reference
to the relevant object.Copyright © 2015. All rights reserved.