public static enum Reflection.ClassType extends Enum<Reflection.ClassType>
| Modifier and Type | Method and Description |
|---|---|
static Reflection.ClassType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Reflection.ClassType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reflection.ClassType SIMPLE
public static final Reflection.ClassType ARRAY
public static final Reflection.ClassType LIST
public static final Reflection.ClassType SET
public static final Reflection.ClassType MAP
public static final Reflection.ClassType OBJECT
public static Reflection.ClassType[] values()
for (Reflection.ClassType c : Reflection.ClassType.values()) System.out.println(c);
public static Reflection.ClassType 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 © 2018. All rights reserved.