public static enum BindfileGenerator.CharVarying extends java.lang.Enum<BindfileGenerator.CharVarying>
Enum Constant and Description |
---|
BINARY
Character fields are mapped to a JSON string containing base64 encoded data and are processed as fixed-length
fields.
|
COLLAPSE
Character fields are mapped to a JSON string.
|
NO
Character fields are mapped to a JSON string and are processed as fixed-length fields.
|
NULL
Character fields are mapped to a JSON string and are processed as null-terminated strings.
|
YES |
Modifier and Type | Method and Description |
---|---|
static BindfileGenerator.CharVarying |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BindfileGenerator.CharVarying[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindfileGenerator.CharVarying NO
public static final BindfileGenerator.CharVarying NULL
BindfileGenerator.CharVarying
for C and C++. This value does not apply to Enterprise and Other PL/I
language structures.public static final BindfileGenerator.CharVarying COLLAPSE
BindfileGenerator.CharVarying
for COBOL and PL/I.public static final BindfileGenerator.CharVarying BINARY
public static final BindfileGenerator.CharVarying YES
public static BindfileGenerator.CharVarying[] values()
for (BindfileGenerator.CharVarying c : BindfileGenerator.CharVarying.values()) System.out.println(c);
public static BindfileGenerator.CharVarying 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 null