public static enum References.ReferenceType extends Enum<References.ReferenceType>
Modifier and Type | Method and Description |
---|---|
static References.ReferenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static References.ReferenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final References.ReferenceType SOFT
public static final References.ReferenceType WEAK
public static final References.ReferenceType PHANTOM
public static References.ReferenceType[] values()
for (References.ReferenceType c : References.ReferenceType.values()) System.out.println(c);
public static References.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.