public static enum BindfileGenerator.DateTime extends java.lang.Enum<BindfileGenerator.DateTime>
BindfileGenerator.BindfileGenerator(String, String, String, Language, ProgramInterface, String, String, CharVarying, Boolean, String, Boolean, String)
and
BindfileGenerator.BindfileGenerator(String, String, String, Boolean, Language, ProgramInterface, String, String, CharVarying, String, String, Boolean, String, Boolean, Boolean, DateTime, String)
this specifies if potential ABSTIME fields in the high-level language structure are mapped as timestamps. Only
the PACKED15
and UNUSED
values are applicable.
For
BindfileGenerator.BindfileGenerator(String, String, String, String, String, Language, ProgramInterface, String, String, CharVarying, Boolean, Boolean, String, Integer, Integer, String, DateTime, Integer, Integer, String, NameTruncation, String)
this specifies how JSON date-time format properties are mapped to the language structure. Only the
PACKED15
and STRING
values are applicable.Enum Constant and Description |
---|
PACKED15
For bottom-up constructors, packed decimal fields of length 15 (8 bytes) are treated as CICS ABSTIME fields,
and mapped as timestamps.
|
STRING
JSON date-time format properties are processed as text.
|
UNUSED
Packed decimal fields of length 15 (8 bytes) are not treated as timestamps.
|
Modifier and Type | Method and Description |
---|---|
static BindfileGenerator.DateTime |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BindfileGenerator.DateTime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindfileGenerator.DateTime STRING
public static final BindfileGenerator.DateTime PACKED15
public static final BindfileGenerator.DateTime UNUSED
public static BindfileGenerator.DateTime[] values()
for (BindfileGenerator.DateTime c : BindfileGenerator.DateTime.values()) System.out.println(c);
public static BindfileGenerator.DateTime 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