org.millscript.office.excel.records
Enum CF.ComparisonOperator

java.lang.Object
  extended by java.lang.Enum<CF.ComparisonOperator>
      extended by org.millscript.office.excel.records.CF.ComparisonOperator
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CF.ComparisonOperator>
Enclosing class:
CF

public static enum CF.ComparisonOperator
extends java.lang.Enum<CF.ComparisonOperator>


Enum Constant Summary
BETWEEN
           
EQUAL
           
GREATER_OR_EQUAL
           
GREATER_THAN
           
LESS_OR_EQUAL
           
LESS_THAN
           
NO_COMPARISON
           
NOT_BETWEEN
           
NOT_EQUAL
           
 
Method Summary
static CF.ComparisonOperator getComparisonOperator(int operator)
           
static CF.ComparisonOperator valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CF.ComparisonOperator[] 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

NO_COMPARISON

public static final CF.ComparisonOperator NO_COMPARISON

BETWEEN

public static final CF.ComparisonOperator BETWEEN

NOT_BETWEEN

public static final CF.ComparisonOperator NOT_BETWEEN

EQUAL

public static final CF.ComparisonOperator EQUAL

NOT_EQUAL

public static final CF.ComparisonOperator NOT_EQUAL

GREATER_THAN

public static final CF.ComparisonOperator GREATER_THAN

LESS_THAN

public static final CF.ComparisonOperator LESS_THAN

GREATER_OR_EQUAL

public static final CF.ComparisonOperator GREATER_OR_EQUAL

LESS_OR_EQUAL

public static final CF.ComparisonOperator LESS_OR_EQUAL
Method Detail

values

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

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

valueOf

public static CF.ComparisonOperator 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

getComparisonOperator

public static CF.ComparisonOperator getComparisonOperator(int operator)


Copyright © 2006-2007 Open World Ltd. All Rights Reserved.