org.pentaho.di.core.spreadsheet
Enum KCellType

java.lang.Object
  extended by java.lang.Enum<KCellType>
      extended by org.pentaho.di.core.spreadsheet.KCellType
All Implemented Interfaces:
Serializable, Comparable<KCellType>

public enum KCellType
extends Enum<KCellType>


Enum Constant Summary
BOOLEAN
           
BOOLEAN_FORMULA
           
DATE
           
DATE_FORMULA
           
EMPTY
           
LABEL
           
NUMBER
           
NUMBER_FORMULA
           
STRING_FORMULA
           
 
Method Summary
 String getDescription()
           
static KCellType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static KCellType[] 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

EMPTY

public static final KCellType EMPTY

BOOLEAN

public static final KCellType BOOLEAN

BOOLEAN_FORMULA

public static final KCellType BOOLEAN_FORMULA

DATE

public static final KCellType DATE

DATE_FORMULA

public static final KCellType DATE_FORMULA

LABEL

public static final KCellType LABEL

STRING_FORMULA

public static final KCellType STRING_FORMULA

NUMBER

public static final KCellType NUMBER

NUMBER_FORMULA

public static final KCellType NUMBER_FORMULA
Method Detail

values

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

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

valueOf

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

getDescription

public String getDescription()