java.io.Serializable, java.lang.Comparable<TypeDefinitionType>public enum TypeDefinitionType extends java.lang.Enum<TypeDefinitionType>
| Enum Constant | Description |
|---|---|
EXACT |
|
LOWER_WILDCARD |
|
UPPER_BOUND |
|
UPPER_WILDCARD |
| Modifier and Type | Method | 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–2018 PMD. All rights reserved.