public enum ProgramBlockTypeValues extends java.lang.Enum<ProgramBlockTypeValues>
List of block size unit types of Segment in Program.
| Enum Constant and Description |
|---|
_C
Characters
|
_N
Ignore block management
|
_R
Records
|
| Modifier and Type | Method and Description |
|---|---|
static ProgramBlockTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProgramBlockTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgramBlockTypeValues _C
Characters
public static final ProgramBlockTypeValues _N
Ignore block management
public static final ProgramBlockTypeValues _R
Records
public static ProgramBlockTypeValues 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 ProgramBlockTypeValues[] values()
for (ProgramBlockTypeValues c : ProgramBlockTypeValues.values()) System.out.println(c);