Skip navigation links

Oracle Fusion Middleware Management Java API Reference for Oracle Entitlements Server
11g Release 1 (11.1.1)

E22649-02 ESAPI


oracle.security.jps.search
Enum SearchComparatorType

java.lang.Object
  extended by java.lang.Enum<SearchComparatorType>
      extended by oracle.security.jps.search.SearchComparatorType

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SearchComparatorType>

public enum SearchComparatorType
extends java.lang.Enum<SearchComparatorType>
Since:
release specific (what release of product did this appear in)
Version:
$Header: jazn/jps/src/jps-api/oracle/security/jps/search/SearchComparatorType.java /main/1 2010/02/25 00:43:13 svepa Exp $
Author:
dhgoswam

Enum Constant Summary
EQUALITY
          The equals-to operator.
GREATER_THAN
          The greater-than operator.
GREATER_THAN_OR_EQUAL_TO
          The greater-than-or-equal-to operator.
LESS_THAN
          The less-than operator.
LESS_THAN_OR_EQUAL_TO
          The less-than-or-equal-to operator.

 

Method Summary
static SearchComparatorType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SearchComparatorType[] 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

EQUALITY

public static final SearchComparatorType EQUALITY
The equals-to operator.

LESS_THAN

public static final SearchComparatorType LESS_THAN
The less-than operator.

GREATER_THAN

public static final SearchComparatorType GREATER_THAN
The greater-than operator.

LESS_THAN_OR_EQUAL_TO

public static final SearchComparatorType LESS_THAN_OR_EQUAL_TO
The less-than-or-equal-to operator.

GREATER_THAN_OR_EQUAL_TO

public static final SearchComparatorType GREATER_THAN_OR_EQUAL_TO
The greater-than-or-equal-to operator.

Method Detail

values

public static SearchComparatorType[] 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 (SearchComparatorType c : SearchComparatorType.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

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

Skip navigation links

Oracle Fusion Middleware Management Java API Reference for Oracle Entitlements Server
11g Release 1 (11.1.1)

E22649-02 ESAPI


Copyright © 2011, Oracle. All rights reserved.