com.highdeal.cnd.message
Enum ClientOpEventTopic

java.lang.Object
  extended by java.lang.Enum<ClientOpEventTopic>
      extended by com.highdeal.cnd.message.ClientOpEventTopic
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ClientOpEventTopic>

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

This enumeration lists the operations where it is possible to have an event listener in your client application.


Enum Constant Summary
ACTIVATE
           
BLANK_CHARGE
           
CHARGE
           
CHECK_LIMIT
           
CLEANUP
           
DEFAULT
           
EXPORT_SUBSCRIBER_SUBS_DATA
           
GET_ESTIMATED_PRICE
           
GUIDING
           
MONITOR_SPENDING_STATUS
           
POST_RATE
           
PRE_RATE
           
RENEW_RESERVATION_ACK
           
SESSION_RATE
           
SPENDING_STATUS_REPORT_ACK
           
START_RATE
           
STOP_RATE
           
TRANSLATE
           
UPDATE_RATE
           
 
Method Summary
 int getId()
          Returns the ID of this topic.
 java.lang.String getName()
          Returns the name of this topic.
static ClientOpEventTopic valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ClientOpEventTopic[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DEFAULT

public static final ClientOpEventTopic DEFAULT

CHARGE

public static final ClientOpEventTopic CHARGE

BLANK_CHARGE

public static final ClientOpEventTopic BLANK_CHARGE

GET_ESTIMATED_PRICE

public static final ClientOpEventTopic GET_ESTIMATED_PRICE

CHECK_LIMIT

public static final ClientOpEventTopic CHECK_LIMIT

PRE_RATE

public static final ClientOpEventTopic PRE_RATE

POST_RATE

public static final ClientOpEventTopic POST_RATE

EXPORT_SUBSCRIBER_SUBS_DATA

public static final ClientOpEventTopic EXPORT_SUBSCRIBER_SUBS_DATA

ACTIVATE

public static final ClientOpEventTopic ACTIVATE

CLEANUP

public static final ClientOpEventTopic CLEANUP

TRANSLATE

public static final ClientOpEventTopic TRANSLATE

START_RATE

public static final ClientOpEventTopic START_RATE

UPDATE_RATE

public static final ClientOpEventTopic UPDATE_RATE

STOP_RATE

public static final ClientOpEventTopic STOP_RATE

GUIDING

public static final ClientOpEventTopic GUIDING

SESSION_RATE

public static final ClientOpEventTopic SESSION_RATE

RENEW_RESERVATION_ACK

public static final ClientOpEventTopic RENEW_RESERVATION_ACK

MONITOR_SPENDING_STATUS

public static final ClientOpEventTopic MONITOR_SPENDING_STATUS

SPENDING_STATUS_REPORT_ACK

public static final ClientOpEventTopic SPENDING_STATUS_REPORT_ACK
Method Detail

values

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

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

valueOf

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

getId

public int getId()
Returns the ID of this topic.

Returns:
The ID of this topic

getName

public java.lang.String getName()
Returns the name of this topic.

Returns:
The name of this topic

Document Published: October 2015 (SAP CC 4.0 SP10 and Later)