public enum LargeLiteralHandling extends Enum<LargeLiteralHandling>
BasicParserSettings.LARGE_LITERALS_HANDLING
parser
setting.Enum Constant and Description |
---|
DROP
Indicates that statements containing large literals should be dropped, based on based on the
BasicParserSettings.LARGE_LITERALS_LIMIT setting. |
PRESERVE
Indicates that large literals should be preserved.
|
TRUNCATE
Indicates that values of large literals should be truncated, based on the
BasicParserSettings.LARGE_LITERALS_LIMIT setting. |
Modifier and Type | Method and Description |
---|---|
static LargeLiteralHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LargeLiteralHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LargeLiteralHandling PRESERVE
public static final LargeLiteralHandling DROP
BasicParserSettings.LARGE_LITERALS_LIMIT
setting.public static final LargeLiteralHandling TRUNCATE
BasicParserSettings.LARGE_LITERALS_LIMIT
setting.public static LargeLiteralHandling[] values()
for (LargeLiteralHandling c : LargeLiteralHandling.values()) System.out.println(c);
public static LargeLiteralHandling valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015-2022 Eclipse Foundation. All Rights Reserved.