public static enum TempClassLoader.Skip extends java.lang.Enum<TempClassLoader.Skip>
Enum Constant and Description |
---|
ALL |
ANNOTATIONS |
ENUMS |
NONE |
Modifier and Type | Method and Description |
---|---|
static TempClassLoader.Skip |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TempClassLoader.Skip[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TempClassLoader.Skip NONE
public static final TempClassLoader.Skip ANNOTATIONS
public static final TempClassLoader.Skip ENUMS
public static final TempClassLoader.Skip ALL
public static TempClassLoader.Skip[] values()
for (TempClassLoader.Skip c : TempClassLoader.Skip.values()) System.out.println(c);
public static TempClassLoader.Skip 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 null