Enum FCIInteraction.Mode
- java.lang.Object
-
- java.lang.Enum<FCIInteraction.Mode>
-
- com.opencloud.slee.resources.sis.script.in.FCIInteraction.Mode
-
- All Implemented Interfaces:
Serializable
,Comparable<FCIInteraction.Mode>
- Enclosing class:
- FCIInteraction
public static enum FCIInteraction.Mode extends Enum<FCIInteraction.Mode>
Supported FCI Interaction modes.
-
-
Enum Constant Summary
Enum Constants Enum Constant 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.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
STATIC_PRIORITIES
public static final FCIInteraction.Mode STATIC_PRIORITIES
FCI Interaction Mode representing the Static Service Priorities mode. The descriptive XML name of this mode is "static-service-priorities"
-
NOMINATED_SERVICE
public static final FCIInteraction.Mode NOMINATED_SERVICE
FCI Interaction Mode representing the Nominated Service mode. The descriptive XML name of this mode is "nominated-service"
-
CONCATENATION
public static final FCIInteraction.Mode CONCATENATION
FCI Interaction Mode representing the Concatenation mode. The descriptive XML name of this mode is "concatenation"
-
PASS_THROUGH
public static final FCIInteraction.Mode PASS_THROUGH
FCI Interaction Mode representing the Pass-Through mode. The descriptive XML name of this mode is "pass-through"
-
-
Method Detail
-
values
public static FCIInteraction.Mode[] 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 (FCIInteraction.Mode c : FCIInteraction.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FCIInteraction.Mode valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
Returns the descriptive XML name of this mode.- Overrides:
toString
in classEnum<FCIInteraction.Mode>
- Returns:
- the descriptive XML name.
-
fromString
public static FCIInteraction.Mode fromString(String xmlName)
Get the FCI Interaction Mode from its descriptive (toString()
) XML form.- Parameters:
xmlName
- the XML name.- Returns:
- the mode, or
null
if no mode with that name exists.
-
-