NO_ABEND_TYPE |
No abend type |
CONDITION |
Condition abend type |
USER |
User abend type |
SYSTEM |
System abend type |
Method Summary | |
---|---|
static AbendCodeType | valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AbendCodeType[] | values()
Returns an array containing the constants of this enum type, in the order they are declared. |
public static AbendCodeType 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.)
IllegalArgumentException | If this enum type has no constant with the specified name. |
NullPointerException | If the argument is null. |
public static AbendCodeType[] 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 (AbendCodeType c : AbendCodeType.values()) System.out.println(c);