protected static enum QualifierDefaults.BoundType extends Enum<QualifierDefaults.BoundType>
Enum Constant and Description |
---|
LOWER
Indicates a lower-bounded type variable or wildcard.
|
UNBOUNDED
Neither bound is specified, BOTH are implicit.
|
UPPER
Indicates an upper-bounded type variable or wildcard.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isOneOf(QualifierDefaults.BoundType... choices) |
static QualifierDefaults.BoundType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QualifierDefaults.BoundType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QualifierDefaults.BoundType UPPER
public static final QualifierDefaults.BoundType LOWER
public static final QualifierDefaults.BoundType UNBOUNDED
public static QualifierDefaults.BoundType[] values()
for (QualifierDefaults.BoundType c : QualifierDefaults.BoundType.values()) System.out.println(c);
public static QualifierDefaults.BoundType 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 boolean isOneOf(QualifierDefaults.BoundType... choices)