@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum X12Version extends Enum<X12Version>
Enum Constant and Description |
---|
VERSION_4010 |
VERSION_4030 |
VERSION_5010 |
VERSION_5010_HIPAA |
Modifier and Type | Method and Description |
---|---|
static X12Version |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static X12Version |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static X12Version[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final X12Version VERSION_4010
public static final X12Version VERSION_4030
public static final X12Version VERSION_5010
public static final X12Version VERSION_5010_HIPAA
public static X12Version[] values()
for (X12Version c : X12Version.values()) System.out.println(c);
public static X12Version 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 String toString()
toString
in class Enum<X12Version>
public static X12Version fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.