|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<SchemaAvailabilityEnum> sk.uniba.euromath.document.schema.SchemaAvailabilityEnum
public enum SchemaAvailabilityEnum
Enum constants defining availability of schema.
Enum Constant Summary | |
---|---|
BOUND
States that schema for a namespace is loaded into memory and it is bound (registered) with this document. |
|
LOADABLE
States that schema for a namespace is not yet loaded but it is known (it is configured properly in the config file) and can be loaded. |
|
LOADED
States that schema for a namespace is loaded into memory but it is not bounded to this document. |
|
UNAVAILABLE
States that no schema is defined for a namespace thus cannot be loaded. |
Method Summary | |
---|---|
static SchemaAvailabilityEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SchemaAvailabilityEnum[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SchemaAvailabilityEnum LOADED
public static final SchemaAvailabilityEnum BOUND
public static final SchemaAvailabilityEnum LOADABLE
public static final SchemaAvailabilityEnum UNAVAILABLE
Method Detail |
---|
public static final SchemaAvailabilityEnum[] values()
for(SchemaAvailabilityEnum c : SchemaAvailabilityEnum.values()) System.out.println(c);
public static SchemaAvailabilityEnum valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |