org.d2rq.db.schema
Enum Identifier.Parser.ViolationType

java.lang.Object
  extended by java.lang.Enum<Identifier.Parser.ViolationType>
      extended by org.d2rq.db.schema.Identifier.Parser.ViolationType
All Implemented Interfaces:
Serializable, Comparable<Identifier.Parser.ViolationType>
Enclosing class:
Identifier.Parser

public static enum Identifier.Parser.ViolationType
extends Enum<Identifier.Parser.ViolationType>


Enum Constant Summary
EMPTY_DELIMITED_IDENTIFIER
           
TOO_MANY_IDENTIFIERS
           
UNEXPECTED_CHARACTER
           
UNEXPECTED_END
           
 
Method Summary
static Identifier.Parser.ViolationType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Identifier.Parser.ViolationType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EMPTY_DELIMITED_IDENTIFIER

public static final Identifier.Parser.ViolationType EMPTY_DELIMITED_IDENTIFIER

TOO_MANY_IDENTIFIERS

public static final Identifier.Parser.ViolationType TOO_MANY_IDENTIFIERS

UNEXPECTED_CHARACTER

public static final Identifier.Parser.ViolationType UNEXPECTED_CHARACTER

UNEXPECTED_END

public static final Identifier.Parser.ViolationType UNEXPECTED_END
Method Detail

values

public static Identifier.Parser.ViolationType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Identifier.Parser.ViolationType c : Identifier.Parser.ViolationType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Identifier.Parser.ViolationType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null