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

oracle.sdp.messaging.userprefs
Enum ActionOperationType

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

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

Enumeration of messaging action types available in DeliveryPreference

Since:
11.0.0
See Also:
DeliveryPreference, UserRuleSet

Enum Constant Summary
BROADCAST
          Broadcast -- send message to all the addresses in the list
DO_NOT_SEND
          Do not send to any address.
FAIL_OVER
          Fail Over -- send message in order to the addresses in the list.
 
Method Summary
static ActionOperationType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ActionOperationType[] 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

BROADCAST

public static final ActionOperationType BROADCAST
Broadcast -- send message to all the addresses in the list


DO_NOT_SEND

public static final ActionOperationType DO_NOT_SEND
Do not send to any address. It is not meaningful to specify a list of addresses with "Do not send".


FAIL_OVER

public static final ActionOperationType FAIL_OVER
Fail Over -- send message in order to the addresses in the list. e.g. if the message cannot be sent to the first address in the list, then send the message to the second address in the list.

Method Detail

valueOf

public static ActionOperationType 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 ActionOperationType[] 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 (ActionOperationType c : ActionOperationType.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.