public enum TypeName extends Enum<TypeName>
| Enum Constant and Description |
|---|
absClassType |
classType |
enumType |
finalClassType |
interfaceType |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static TypeName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeName classType
public static final TypeName interfaceType
public static final TypeName enumType
public static final TypeName absClassType
public static final TypeName finalClassType
public static TypeName[] values()
for (TypeName c : TypeName.values()) System.out.println(c);
public static TypeName 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 nullCopyright © 2015. All Rights Reserved.