Skip navigation links

Oracle Fusion Middleware Management Java API Reference for Oracle Entitlements Server
11g Release 2 (11.1.2)

E27155-01 ESAPI


oracle.security.jps.service.policystore.info
Enum RuleExpressionEntry.FunctionCategory

java.lang.Object
  extended by java.lang.Enum<RuleExpressionEntry.FunctionCategory>
      extended by oracle.security.jps.service.policystore.info.RuleExpressionEntry.FunctionCategory

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RuleExpressionEntry.FunctionCategory>
Enclosing class:
RuleExpressionEntry<ReturnType extends DataType>

public static enum RuleExpressionEntry.FunctionCategory
extends java.lang.Enum<RuleExpressionEntry.FunctionCategory>

Categories of functions. OES function categories are similar to XACML 3.0 function categories but are not exactly the same. OES has a number of categories for functions that are not part of XACML and some functions are added to different categories than the standard. This enum defines the function categories. Corresponding to each of these categories there is an enum in class BuiltInfFunctionsHandler. That enum contains all functions supported by OES for the given category.


Enum Constant Summary
ARITHMETIC_FUNCTION
          All arithmetic functions.
CUSTOM_FUNCTION
          All user defined functions.
DATE_TIME_ARITHMETIC_FUNCTION
          Date time arithmetic functions.
EQUALITY_COMPARISON_FUNCTION
          All *_EQUAL functions like STRING_EQUAL, INTEGER_EQUAL
FROM_STRING_CONVERSION_FUNCTION
          Functions that create a data type from string.
GREATER_THAN_COMPARISON_FUNCTION
          All *_GREATER_THAN functions like TIME_GREATER_THAN
GREATER_THAN_EQUAL_COMPARISON_FUNCTION
          All *_GREATER_THAN_OR_EQUAL functions like * TIME_GREATER_THAN_OR_EQUAL
HAS_VALUE_EXISTENCE_FUNCTION
          Functions like ATTRIBUTE_HAS_VALUE
LESS_THAN_COMPARISON_FUNCTION
          All *_LESS_THAN functions like DATE_LESS_THAN
LESS_THAN_EQUAL_COMPARISON_FUNCTION
          All *_LESS_THAN_OR_EQUAL functions like * INTEGER_LESS_THAN_OR_EQUAL
LOGICAL_FUNCTION
          Logical functions like AND, OR, NOT.
NUMERIC_CONVERSION_FUNCTION
          Numeric conversion function.
REGEXP_FUNCTION
          Regular expression match functions like STRING_REGEXP_MATCH
RUNTIME_IDC_ASSERTER_FUNCTION
          Runtime Function Identity Context Asserter Function
RUNTIME_IDC_RETRIEVER_FUNCTIONS
          Runtime Function Identity Context Retriever Functions
SPECIAL_MATCH_FUNCTIONS
          Special match function
STRING_CONVERSION_FUNCTION
          String conversion functions
STRING_FUNCTION
          String functions (datattype-from-string)
TO_STRING_CONVERSION_FUNCTION
          Functions that convert a data type to string.
TYPE_AT_LEAST_ONE_MEMBER_FUNCTION
          Set functions type-at-least-one-member-of
TYPE_BAG_FUNCTION
          Bag functions type-bag
TYPE_BAG_SIZE_FUNCTION
          Bag functions type-bag-size
TYPE_INTERSECTION_FUNCTION
          Set functions type-intersection
TYPE_IS_IN_EXISTENCE_FUNCTION
          All TYPE_IS_IN functions like STRING_IS_IN
TYPE_ONE_AND_ONLY_FUNCTION
          Bag functions type-one-and-only.
TYPE_SET_EQUALS_FUNCTION
          Set functions type-set-equals
TYPE_SUBSET_FUNCTION
          Set functions type-subset
TYPE_UNION_FUNCTION
          Set functions type-union
VALID_FOR_FUNCTION
          All VALID_FOR_* functions like VALID_FOR_SECONDS

 

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

LOGICAL_FUNCTION

public static final RuleExpressionEntry.FunctionCategory LOGICAL_FUNCTION
Logical functions like AND, OR, NOT.

EQUALITY_COMPARISON_FUNCTION

public static final RuleExpressionEntry.FunctionCategory EQUALITY_COMPARISON_FUNCTION
All *_EQUAL functions like STRING_EQUAL, INTEGER_EQUAL

LESS_THAN_COMPARISON_FUNCTION

public static final RuleExpressionEntry.FunctionCategory LESS_THAN_COMPARISON_FUNCTION
All *_LESS_THAN functions like DATE_LESS_THAN

GREATER_THAN_COMPARISON_FUNCTION

public static final RuleExpressionEntry.FunctionCategory GREATER_THAN_COMPARISON_FUNCTION
All *_GREATER_THAN functions like TIME_GREATER_THAN

LESS_THAN_EQUAL_COMPARISON_FUNCTION

public static final RuleExpressionEntry.FunctionCategory LESS_THAN_EQUAL_COMPARISON_FUNCTION
All *_LESS_THAN_OR_EQUAL functions like * INTEGER_LESS_THAN_OR_EQUAL

GREATER_THAN_EQUAL_COMPARISON_FUNCTION

public static final RuleExpressionEntry.FunctionCategory GREATER_THAN_EQUAL_COMPARISON_FUNCTION
All *_GREATER_THAN_OR_EQUAL functions like * TIME_GREATER_THAN_OR_EQUAL

TYPE_IS_IN_EXISTENCE_FUNCTION

public static final RuleExpressionEntry.FunctionCategory TYPE_IS_IN_EXISTENCE_FUNCTION
All TYPE_IS_IN functions like STRING_IS_IN

HAS_VALUE_EXISTENCE_FUNCTION

public static final RuleExpressionEntry.FunctionCategory HAS_VALUE_EXISTENCE_FUNCTION
Functions like ATTRIBUTE_HAS_VALUE

REGEXP_FUNCTION

public static final RuleExpressionEntry.FunctionCategory REGEXP_FUNCTION
Regular expression match functions like STRING_REGEXP_MATCH

VALID_FOR_FUNCTION

public static final RuleExpressionEntry.FunctionCategory VALID_FOR_FUNCTION
All VALID_FOR_* functions like VALID_FOR_SECONDS

ARITHMETIC_FUNCTION

public static final RuleExpressionEntry.FunctionCategory ARITHMETIC_FUNCTION
All arithmetic functions.

STRING_CONVERSION_FUNCTION

public static final RuleExpressionEntry.FunctionCategory STRING_CONVERSION_FUNCTION
String conversion functions

NUMERIC_CONVERSION_FUNCTION

public static final RuleExpressionEntry.FunctionCategory NUMERIC_CONVERSION_FUNCTION
Numeric conversion function.

DATE_TIME_ARITHMETIC_FUNCTION

public static final RuleExpressionEntry.FunctionCategory DATE_TIME_ARITHMETIC_FUNCTION
Date time arithmetic functions.

FROM_STRING_CONVERSION_FUNCTION

public static final RuleExpressionEntry.FunctionCategory FROM_STRING_CONVERSION_FUNCTION
Functions that create a data type from string.

TO_STRING_CONVERSION_FUNCTION

public static final RuleExpressionEntry.FunctionCategory TO_STRING_CONVERSION_FUNCTION
Functions that convert a data type to string.

STRING_FUNCTION

public static final RuleExpressionEntry.FunctionCategory STRING_FUNCTION
String functions (datattype-from-string)

TYPE_ONE_AND_ONLY_FUNCTION

public static final RuleExpressionEntry.FunctionCategory TYPE_ONE_AND_ONLY_FUNCTION
Bag functions type-one-and-only.

TYPE_BAG_SIZE_FUNCTION

public static final RuleExpressionEntry.FunctionCategory TYPE_BAG_SIZE_FUNCTION
Bag functions type-bag-size

TYPE_BAG_FUNCTION

public static final RuleExpressionEntry.FunctionCategory TYPE_BAG_FUNCTION
Bag functions type-bag

TYPE_INTERSECTION_FUNCTION

public static final RuleExpressionEntry.FunctionCategory TYPE_INTERSECTION_FUNCTION
Set functions type-intersection

TYPE_UNION_FUNCTION

public static final RuleExpressionEntry.FunctionCategory TYPE_UNION_FUNCTION
Set functions type-union

TYPE_AT_LEAST_ONE_MEMBER_FUNCTION

public static final RuleExpressionEntry.FunctionCategory TYPE_AT_LEAST_ONE_MEMBER_FUNCTION
Set functions type-at-least-one-member-of

TYPE_SUBSET_FUNCTION

public static final RuleExpressionEntry.FunctionCategory TYPE_SUBSET_FUNCTION
Set functions type-subset

TYPE_SET_EQUALS_FUNCTION

public static final RuleExpressionEntry.FunctionCategory TYPE_SET_EQUALS_FUNCTION
Set functions type-set-equals

SPECIAL_MATCH_FUNCTIONS

public static final RuleExpressionEntry.FunctionCategory SPECIAL_MATCH_FUNCTIONS
Special match function

CUSTOM_FUNCTION

public static final RuleExpressionEntry.FunctionCategory CUSTOM_FUNCTION
All user defined functions.

RUNTIME_IDC_ASSERTER_FUNCTION

public static final RuleExpressionEntry.FunctionCategory RUNTIME_IDC_ASSERTER_FUNCTION
Runtime Function Identity Context Asserter Function

RUNTIME_IDC_RETRIEVER_FUNCTIONS

public static final RuleExpressionEntry.FunctionCategory RUNTIME_IDC_RETRIEVER_FUNCTIONS
Runtime Function Identity Context Retriever Functions

Method Detail

values

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

valueOf

public static RuleExpressionEntry.FunctionCategory 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 2 (11.1.2)

E27155-01 ESAPI


Copyright © 2011,2012, Oracle and/or its affiliates. All rights reserved.