net.sourceforge.fixagora.basis.shared.model.persistence
Enum SpreadSheetCellContent.SpreadSheetCellType

java.lang.Object
  extended by java.lang.Enum<SpreadSheetCellContent.SpreadSheetCellType>
      extended by net.sourceforge.fixagora.basis.shared.model.persistence.SpreadSheetCellContent.SpreadSheetCellType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SpreadSheetCellContent.SpreadSheetCellType>
Enclosing class:
SpreadSheetCellContent

public static enum SpreadSheetCellContent.SpreadSheetCellType
extends java.lang.Enum<SpreadSheetCellContent.SpreadSheetCellType>

The Enum SpreadSheetCellType.


Enum Constant Summary
CLEAR
          The clear.
TYPE_BOOLEAN
          The type boolean.
TYPE_FORMULA
          The type formula.
TYPE_NUMERIC
          The type numeric.
TYPE_STRING
          The type string.
 
Method Summary
static SpreadSheetCellContent.SpreadSheetCellType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SpreadSheetCellContent.SpreadSheetCellType[] 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

TYPE_STRING

public static final SpreadSheetCellContent.SpreadSheetCellType TYPE_STRING
The type string.


TYPE_FORMULA

public static final SpreadSheetCellContent.SpreadSheetCellType TYPE_FORMULA
The type formula.


TYPE_BOOLEAN

public static final SpreadSheetCellContent.SpreadSheetCellType TYPE_BOOLEAN
The type boolean.


TYPE_NUMERIC

public static final SpreadSheetCellContent.SpreadSheetCellType TYPE_NUMERIC
The type numeric.


CLEAR

public static final SpreadSheetCellContent.SpreadSheetCellType CLEAR
The clear.

Method Detail

values

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

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

valueOf

public static SpreadSheetCellContent.SpreadSheetCellType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null