public static enum SourceValidationException.ErrorType extends java.lang.Enum<SourceValidationException.ErrorType>
| Enum Constant and Description |
|---|
COLSEQ
An error or inconsistency in the code implementing a Column Sequence
|
SYNTAX
General syntax error
|
| Modifier and Type | Method and Description |
|---|---|
static SourceValidationException.ErrorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SourceValidationException.ErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceValidationException.ErrorType SYNTAX
public static final SourceValidationException.ErrorType COLSEQ
public static SourceValidationException.ErrorType[] values()
for (SourceValidationException.ErrorType c : SourceValidationException.ErrorType.values()) System.out.println(c);
public static SourceValidationException.ErrorType 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