org.pentaho.platform.dataaccess.datasource
Enum DataFormatType

java.lang.Object
  extended by java.lang.Enum<DataFormatType>
      extended by org.pentaho.platform.dataaccess.datasource.DataFormatType
All Implemented Interfaces:
Serializable, Comparable<DataFormatType>

public enum DataFormatType
extends Enum<DataFormatType>
implements Serializable

DataFormatType represents the data format type


Enum Constant Summary
CURRENCY
           
DDMMYYYY
           
MMDDYYYY
           
 
Method Summary
 String toString()
           
static DataFormatType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DataFormatType[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CURRENCY

public static final DataFormatType CURRENCY

MMDDYYYY

public static final DataFormatType MMDDYYYY

DDMMYYYY

public static final DataFormatType DDMMYYYY
Method Detail

values

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

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

valueOf

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

toString

public String toString()
Overrides:
toString in class Enum<DataFormatType>