| Enum Constant and Description |
|---|
MEMBER_SIGNATURE_CONTRAVARIANT |
MEMBER_SIGNATURE_COVARIANT |
MEMBER_SIGNATURE_INVARIANT |
SUPERTYPE |
SUPERTYPE_ARGUMENT |
TYPE_ARGUMENT |
UPPER_BOUND |
| Modifier and Type | Method and Description |
|---|---|
static TypeUsage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeUsage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeUsage TYPE_ARGUMENT
public static final TypeUsage UPPER_BOUND
public static final TypeUsage MEMBER_SIGNATURE_COVARIANT
public static final TypeUsage MEMBER_SIGNATURE_CONTRAVARIANT
public static final TypeUsage MEMBER_SIGNATURE_INVARIANT
public static final TypeUsage SUPERTYPE_ARGUMENT
public static TypeUsage[] values()
for (TypeUsage c : TypeUsage.values()) System.out.println(c);
public static TypeUsage valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null