public static enum ReflectionSupport.Level extends Enum<ReflectionSupport.Level>
Enum Constant and Description |
---|
FULL |
NATIVE_ONLY |
Modifier and Type | Method and Description |
---|---|
static ReflectionSupport.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReflectionSupport.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReflectionSupport.Level NATIVE_ONLY
public static final ReflectionSupport.Level FULL
public static ReflectionSupport.Level[] values()
for (ReflectionSupport.Level c : ReflectionSupport.Level.values()) System.out.println(c);
public static ReflectionSupport.Level 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 © 2017. All rights reserved.