public enum TypeDefinitionType extends java.lang.Enum<TypeDefinitionType>
| Enum Constant and Description |
|---|
EXACT |
LOWER_WILDCARD |
UPPER_BOUND |
UPPER_WILDCARD |
| Modifier and Type | Method and Description |
|---|---|
static TypeDefinitionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeDefinitionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeDefinitionType EXACT
public static final TypeDefinitionType UPPER_BOUND
public static final TypeDefinitionType UPPER_WILDCARD
public static final TypeDefinitionType LOWER_WILDCARD
public static TypeDefinitionType[] values()
for (TypeDefinitionType c : TypeDefinitionType.values()) System.out.println(c);
public static TypeDefinitionType 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 nullCopyright © 2002–2017 PMD. All rights reserved.