net.sourceforge.fixagora.basis.shared.model.persistence
Enum SpreadSheetCondition.IsType

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

public static enum SpreadSheetCondition.IsType
extends java.lang.Enum<SpreadSheetCondition.IsType>

The Enum IsType.


Enum Constant Summary
BETWEEN
          The between.
EQUAL_TO
          The equal to.
GREATER_THAN
          The greater than.
GREATER_THAN_OR_EQUAL_TO
          The greater than or equal to.
LESS_THAN
          The less than.
LESS_THAN_OR_EQUAL_TO
          The less than or equal to.
NOT_BETWEEN
          The not between.
NOT_EQUAL_TO
          The not equal to.
 
Method Summary
static SpreadSheetCondition.IsType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SpreadSheetCondition.IsType[] 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

EQUAL_TO

public static final SpreadSheetCondition.IsType EQUAL_TO
The equal to.


GREATER_THAN

public static final SpreadSheetCondition.IsType GREATER_THAN
The greater than.


LESS_THAN_OR_EQUAL_TO

public static final SpreadSheetCondition.IsType LESS_THAN_OR_EQUAL_TO
The less than or equal to.


GREATER_THAN_OR_EQUAL_TO

public static final SpreadSheetCondition.IsType GREATER_THAN_OR_EQUAL_TO
The greater than or equal to.


NOT_EQUAL_TO

public static final SpreadSheetCondition.IsType NOT_EQUAL_TO
The not equal to.


BETWEEN

public static final SpreadSheetCondition.IsType BETWEEN
The between.


NOT_BETWEEN

public static final SpreadSheetCondition.IsType NOT_BETWEEN
The not between.


LESS_THAN

public static final SpreadSheetCondition.IsType LESS_THAN
The less than.

Method Detail

values

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

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

valueOf

public static SpreadSheetCondition.IsType 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