public enum CopybookDSCodeTypeValues extends java.lang.Enum<CopybookDSCodeTypeValues>
Indicates the codification of the data structure code in genereted file
Modifier and Type | Method and Description |
---|---|
static CopybookDSCodeTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CopybookDSCodeTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopybookDSCodeTypeValues _AQUOTE
Data structure code will be prefixed with '
public static final CopybookDSCodeTypeValues _ASTAR
Alias generation
public static final CopybookDSCodeTypeValues _NONE
No specific codification
public static CopybookDSCodeTypeValues 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 CopybookDSCodeTypeValues[] values()
for (CopybookDSCodeTypeValues c : CopybookDSCodeTypeValues.values()) System.out.println(c);