public static enum TypeRegistry.CouldBeReloadableDecision extends java.lang.Enum<TypeRegistry.CouldBeReloadableDecision>
Enum Constant and Description |
---|
No_Array |
No_BuiltIn |
No_DiskCheck |
No_FixedPackageList |
No_GroovyScript |
No_JSP |
No_PackageCache |
Yes_CGLIB |
Yes_FoundInJar |
Yes_FoundOnDisk |
Yes_PackageCache |
Modifier and Type | Field and Description |
---|---|
boolean |
couldBeReloadable |
boolean |
diskChecked |
boolean |
inJar |
java.lang.String |
reason |
Modifier and Type | Method and Description |
---|---|
static TypeRegistry.CouldBeReloadableDecision |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeRegistry.CouldBeReloadableDecision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeRegistry.CouldBeReloadableDecision No_BuiltIn
public static final TypeRegistry.CouldBeReloadableDecision No_FixedPackageList
public static final TypeRegistry.CouldBeReloadableDecision Yes_CGLIB
public static final TypeRegistry.CouldBeReloadableDecision No_JSP
public static final TypeRegistry.CouldBeReloadableDecision No_GroovyScript
public static final TypeRegistry.CouldBeReloadableDecision Yes_PackageCache
public static final TypeRegistry.CouldBeReloadableDecision No_PackageCache
public static final TypeRegistry.CouldBeReloadableDecision Yes_FoundInJar
public static final TypeRegistry.CouldBeReloadableDecision Yes_FoundOnDisk
public static final TypeRegistry.CouldBeReloadableDecision No_Array
public static final TypeRegistry.CouldBeReloadableDecision No_DiskCheck
public final boolean couldBeReloadable
public final boolean diskChecked
public final boolean inJar
public java.lang.String reason
public static TypeRegistry.CouldBeReloadableDecision[] values()
for (TypeRegistry.CouldBeReloadableDecision c : TypeRegistry.CouldBeReloadableDecision.values()) System.out.println(c);
public static TypeRegistry.CouldBeReloadableDecision 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