public static enum OnlineChargingInteraction.Mode extends Enum<OnlineChargingInteraction.Mode>
| Enum Constant and Description |
|---|
NOMINATED_SERVICE
Online Charging Interaction Mode representing the Nominated Service mode.
|
STATIC_PRIORITIES
Online FCI Interaction Mode representing the Static Service Priorities mode.
|
| Modifier and Type | Method and Description |
|---|---|
static OnlineChargingInteraction.Mode |
fromString(String xmlName)
Get the Online Charging Interaction Mode from its descriptive (
toString()) xml form. |
String |
toString()
Returns the descriptive XML name of this mode.
|
static OnlineChargingInteraction.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OnlineChargingInteraction.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OnlineChargingInteraction.Mode STATIC_PRIORITIES
public static final OnlineChargingInteraction.Mode NOMINATED_SERVICE
public static OnlineChargingInteraction.Mode[] values()
for (OnlineChargingInteraction.Mode c : OnlineChargingInteraction.Mode.values()) System.out.println(c);
public static OnlineChargingInteraction.Mode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<OnlineChargingInteraction.Mode>public static OnlineChargingInteraction.Mode fromString(String xmlName)
toString()) xml form.xmlName - the xml name.null if no mode with that name exists.