Oracle Fusion Middleware User Messaging Service 11.1.1.3.0 Java API Reference
E14011-02

oracle.sdp.messaging.userprefs
Enum FilterOperationType

java.lang.Object
  extended by java.lang.Enum<FilterOperationType>
      extended by oracle.sdp.messaging.userprefs.FilterOperationType
All Implemented Interfaces:
Serializable, java.lang.Comparable<FilterOperationType>

public enum FilterOperationType
extends java.lang.Enum<FilterOperationType>

Enumeration describing types of evaluation for each condition of a UserRule

Since:
11.0.0

Enum Constant Summary
ALL_CONDITIONS
          Rule evaluates to true if all conditions are met.
ANY_CONDITION
          Rule evaluates to true if any condition is met.
 
Method Summary
static FilterOperationType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FilterOperationType[] 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

ALL_CONDITIONS

public static final FilterOperationType ALL_CONDITIONS
Rule evaluates to true if all conditions are met. Treated internally as a conjunction of all the conditions.


ANY_CONDITION

public static final FilterOperationType ANY_CONDITION
Rule evaluates to true if any condition is met. Treated internally as a disjunction of all the conditions.

Method Detail

valueOf

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

values

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

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

Oracle Fusion Middleware User Messaging Service 11.1.1.3.0 Java API Reference
E14011-02

Copyright © 2010 Oracle and/or its affiliates. All rights reserved.