public static enum DTSContainer.Status extends java.lang.Enum<DTSContainer.Status>
| Enum Constant and Description |
|---|
COMPILE
The processor has loaded all required schemas and they are already part of the object model.
|
DISCOVERY
The processor is in DISCOVERY status when a DTS is being loaded.
|
EMPTY
The processor is in EMPTY when no DTS has been loaded.
|
ERROR
The processor is in ERROR status if an exception has occurred during the the processing of the DTS discovery and the information is not stable.
|
LOADED
The processor is in LOADED status when the DTS has been loaded and validation can be started.
|
VALIDATION
The processor is in VALIDATION status when the DTS is being validated.
|
| Modifier and Type | Method and Description |
|---|---|
static DTSContainer.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DTSContainer.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DTSContainer.Status EMPTY
public static final DTSContainer.Status DISCOVERY
public static final DTSContainer.Status COMPILE
public static final DTSContainer.Status LOADED
public static final DTSContainer.Status VALIDATION
public static final DTSContainer.Status ERROR
public static DTSContainer.Status[] values()
for (DTSContainer.Status c : DTSContainer.Status.values()) System.out.println(c);
public static DTSContainer.Status 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