public enum CharacterRestriction extends Enum<CharacterRestriction>
| Enum Constant and Description |
|---|
BASIC
X12 Basic Character Set (uppercase letters, digits, special characters, and space).
|
EXTENDED
X12 Extended Character Set (uppercase and lowercase letters, digits, additional special characters, national
characters and select language characters)
|
UNRESTRICTED
No restrictions, all characters defined by encoding are allowed.
|
| Modifier and Type | Field and Description |
|---|---|
com.mulesoft.flatfile.lexical.x12.X12Constants.CharacterRestriction |
characterRestriction |
| Modifier and Type | Method and Description |
|---|---|
static CharacterRestriction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CharacterRestriction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CharacterRestriction BASIC
public static final CharacterRestriction EXTENDED
public static final CharacterRestriction UNRESTRICTED
public final com.mulesoft.flatfile.lexical.x12.X12Constants.CharacterRestriction characterRestriction
public static CharacterRestriction[] values()
for (CharacterRestriction c : CharacterRestriction.values()) System.out.println(c);
public static CharacterRestriction 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.