Package org.wildfly.common.ref
Enum Reference.Type
- All Implemented Interfaces:
Serializable,Comparable<Reference.Type>,java.lang.constant.Constable
A reference type.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionbooleanin(Reference.Type v1) Determine whether this instance is equal to one of the given instances.booleanin(Reference.Type... values) Determine whether this instance is equal to one of the given instances.booleanin(Reference.Type v1, Reference.Type v2) Determine whether this instance is equal to one of the given instances.booleanin(Reference.Type v1, Reference.Type v2, Reference.Type v3) Determine whether this instance is equal to one of the given instances.static booleanisFull(EnumSet<Reference.Type> set) Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.static Reference.TypeReturns the enum constant of this type with the specified name.static Reference.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
STRONG
A strong reference. -
WEAK
A weak reference. -
PHANTOM
A phantom reference. -
SOFT
A soft reference. -
NULL
Anullreference.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
isFull
Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.- Parameters:
set- the set- Returns:
trueif the set is full,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instancev2- the second instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instancev2- the second instancev3- the third instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
values- the possible values- Returns:
trueif one of the instances matches this one,falseotherwise
-