public enum GuaranteeIndicator extends java.lang.Enum<GuaranteeIndicator>
| Modifier and Type | Method and Description |
|---|---|
static GuaranteeIndicator |
fromValue(java.lang.String value) |
static GuaranteeIndicator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GuaranteeIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GuaranteeIndicator Y
public static final GuaranteeIndicator N
public static final GuaranteeIndicator U
public static final GuaranteeIndicator EMPTY
public static GuaranteeIndicator[] values()
for (GuaranteeIndicator c : GuaranteeIndicator.values()) System.out.println(c);
public static GuaranteeIndicator valueOf(java.lang.String name)
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 nullpublic static GuaranteeIndicator fromValue(java.lang.String value)