com.sas.services.information.search
Enum SearchOperator

com.sas.services.information.search.SearchOperator
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SearchOperator>

public enum SearchOperator


Enum Constant Summary
CONTAINS
           
EQUALS
           
STARTSWITH
           
 
Method Summary
 int getFilterOperator()
           
 java.lang.String getOperatorName()
           
static SearchOperator getSearchOperatorForValue(int lvalue)
           
static SearchOperator getSearchOperatorForValue(java.lang.String value)
           
 java.lang.String toString()
           
static SearchOperator valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SearchOperator[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Enum Constant Detail

CONTAINS

public static final SearchOperator CONTAINS

EQUALS

public static final SearchOperator EQUALS

STARTSWITH

public static final SearchOperator STARTSWITH
Method Detail

values

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

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

valueOf

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

getFilterOperator

public int getFilterOperator()

getOperatorName

public java.lang.String getOperatorName()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<SearchOperator>

getSearchOperatorForValue

public static SearchOperator getSearchOperatorForValue(int lvalue)

getSearchOperatorForValue

public static SearchOperator getSearchOperatorForValue(java.lang.String value)



Copyright © 2009 SAS Institute Inc. All Rights Reserved.