public enum DispositionType extends Enum<DispositionType>
| Modifier and Type | Method and Description |
|---|---|
static DispositionType |
of(String str) |
String |
toString() |
static DispositionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DispositionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DispositionType PROCESSED
public static final DispositionType FAILED
public static DispositionType[] values()
for (DispositionType c : DispositionType.values()) System.out.println(c);
public static DispositionType 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 static DispositionType of(String str)
public String toString()
toString in class Enum<DispositionType>Copyright © 2022 NorStella. All rights reserved.