public enum X12Variation extends Enum<X12Variation>
| Enum Constant and Description |
|---|
HIPAA_SNIP1
Use HIPAA data structures and validate basic syntactical integrity.
|
HIPAA_SNIP2
Use HIPAA data structures and validate requirement-guide-specific syntax requirements.
|
X12
Use standard X12 data structures and validation.
|
| Modifier and Type | Field and Description |
|---|---|
com.mulesoft.flatfile.schema.model.EdiForm |
ediForm |
| Modifier and Type | Method and Description |
|---|---|
static X12Variation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static X12Variation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final X12Variation X12
public static final X12Variation HIPAA_SNIP1
public static final X12Variation HIPAA_SNIP2
public static X12Variation[] values()
for (X12Variation c : X12Variation.values()) System.out.println(c);
public static X12Variation 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 nullCopyright © 2020 MuleSoft, Inc.. All rights reserved.