public enum UESUseCaseRealizationType extends java.lang.Enum<UESUseCaseRealizationType>
Enum Constant and Description |
---|
COMMAND
Determines UES command type.
|
REST
Determines REST type.
|
SCRIPT
Determines Script type.
|
WEB_FLOW
Determines Web Flow type.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
value
String representing value of RealizationType.
|
Modifier and Type | Method and Description |
---|---|
static UESUseCaseRealizationType |
parseRealizationType(java.lang.String value)
Parses string value to instance of this enumeration.
|
java.lang.String |
toString() |
static UESUseCaseRealizationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UESUseCaseRealizationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
for (UESUseCaseRealizationType c : UESUseCaseRealizationType.values()) System.out.println(c);
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullvalue
- Parsed value.toString
in class java.lang.Enum<UESUseCaseRealizationType>
Enum.toString()