public enum UESUseCaseType extends java.lang.Enum<UESUseCaseType>
| Enum Constant and Description | 
|---|
MODIFY
Modify type of use case. 
 | 
READ
Read type of use case. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static UESUseCaseType | 
parseUseCaseType(java.lang.String value)
Parses string value into instance of this enumeration class. 
 | 
java.lang.String | 
toString() | 
static UESUseCaseType | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static UESUseCaseType[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
for (UESUseCaseType c : UESUseCaseType.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 nulltoString in class java.lang.Enum<UESUseCaseType>Enum.toString()value - Parsed value.