public static enum BindfileGenerator.NameTruncation extends java.lang.Enum<BindfileGenerator.NameTruncation>
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 whether JSON names are truncated from the left or the right. The build toolkit truncates JSON
names to the appropriate length for the high-level language specified; by default names are truncated from the
right.Enum Constant and Description |
---|
LEFT
Names are truncated from the left.
|
RIGHT
Names are truncated from the right.
|
Modifier and Type | Method and Description |
---|---|
static BindfileGenerator.NameTruncation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BindfileGenerator.NameTruncation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindfileGenerator.NameTruncation LEFT
public static final BindfileGenerator.NameTruncation RIGHT
public static BindfileGenerator.NameTruncation[] values()
for (BindfileGenerator.NameTruncation c : BindfileGenerator.NameTruncation.values()) System.out.println(c);
public static BindfileGenerator.NameTruncation 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