public static enum FCIInteraction.Mode extends Enum<FCIInteraction.Mode>
Enum Constant and Description |
---|
CONCATENATION
FCI Interaction Mode representing the Concatenation mode.
|
NOMINATED_SERVICE
FCI Interaction Mode representing the Nominated Service mode.
|
PASS_THROUGH
FCI Interaction Mode representing the Pass-Through mode.
|
STATIC_PRIORITIES
FCI Interaction Mode representing the Static Service Priorities mode.
|
Modifier and Type | Method and Description |
---|---|
static FCIInteraction.Mode |
fromString(String xmlName)
Get the FCI Interaction Mode from its descriptive (
toString() ) XML form. |
String |
toString()
Returns the descriptive XML name of this mode.
|
static FCIInteraction.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FCIInteraction.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FCIInteraction.Mode STATIC_PRIORITIES
public static final FCIInteraction.Mode NOMINATED_SERVICE
public static final FCIInteraction.Mode CONCATENATION
public static final FCIInteraction.Mode PASS_THROUGH
public static FCIInteraction.Mode[] values()
for (FCIInteraction.Mode c : FCIInteraction.Mode.values()) System.out.println(c);
public static FCIInteraction.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<FCIInteraction.Mode>
public static FCIInteraction.Mode fromString(String xmlName)
toString()
) XML form.xmlName
- the XML name.null
if no mode with that name exists.