net.sf.farrago.syslib
Enum FarragoConvertDatetimeUDR.Type

java.lang.Object
  extended by java.lang.Enum<FarragoConvertDatetimeUDR.Type>
      extended by net.sf.farrago.syslib.FarragoConvertDatetimeUDR.Type
All Implemented Interfaces:
Serializable, Comparable<FarragoConvertDatetimeUDR.Type>
Enclosing class:
FarragoConvertDatetimeUDR

protected static enum FarragoConvertDatetimeUDR.Type
extends Enum<FarragoConvertDatetimeUDR.Type>


Enum Constant Summary
DIRECT_DATE
           
DIRECT_TIME
           
DIRECT_TIMESTAMP
           
UDR
           
 
Method Summary
static FarragoConvertDatetimeUDR.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FarragoConvertDatetimeUDR.Type[] 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

UDR

public static final FarragoConvertDatetimeUDR.Type UDR

DIRECT_DATE

public static final FarragoConvertDatetimeUDR.Type DIRECT_DATE

DIRECT_TIME

public static final FarragoConvertDatetimeUDR.Type DIRECT_TIME

DIRECT_TIMESTAMP

public static final FarragoConvertDatetimeUDR.Type DIRECT_TIMESTAMP
Method Detail

values

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

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

valueOf

public static FarragoConvertDatetimeUDR.Type 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