public enum ReferenceType extends Enum<ReferenceType>
| Enum Constant and Description |
|---|
PHANTOM
虚引用,在GC时发现虚引用对象,会将
PhantomReference插入ReferenceQueue。 |
SOFT
软引用,在GC报告内存不足时会被GC回收
|
STRONG
强引用,不回收
|
WEAK
弱引用,在GC时发现弱引用会回收其对象
|
| Modifier and Type | Method and Description |
|---|---|
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 SOFT
public static final ReferenceType WEAK
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 nullCopyright © 2024. All rights reserved.