schemacrawler.schema
Enum ConditionTimingType

java.lang.Object
  extended by java.lang.Enum<ConditionTimingType>
      extended by schemacrawler.schema.ConditionTimingType
All Implemented Interfaces:
Serializable, Comparable<ConditionTimingType>

public enum ConditionTimingType
extends Enum<ConditionTimingType>

Constraint type.


Enum Constant Summary
after
          After
before
          Before
instead_of
          Instead of
unknown
          Unknown
 
Method Summary
 String getValue()
          Gets the value.
static ConditionTimingType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ConditionTimingType valueOfFromValue(String value)
          Find the enumeration value corresponding to the string.
static ConditionTimingType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

unknown

public static final ConditionTimingType unknown
Unknown


before

public static final ConditionTimingType before
Before


instead_of

public static final ConditionTimingType instead_of
Instead of


after

public static final ConditionTimingType after
After

Method Detail

values

public static ConditionTimingType[] 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 (ConditionTimingType c : ConditionTimingType.values())
    System.out.println(c);

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

valueOf

public static ConditionTimingType 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

valueOfFromValue

public static ConditionTimingType valueOfFromValue(String value)
Find the enumeration value corresponding to the string.

Parameters:
value - Sort sequence code.
Returns:
Enumeration value

getValue

public final String getValue()
Gets the value.

Returns:
Value


Copyright © 2003-2009 Sualeh Fatehi. All Rights Reserved.