public enum TsonStringLayout extends Enum<TsonStringLayout>
| Enum Constant and Description |
|---|
ANTI_QUOTE |
DOUBLE_QUOTE |
SINGLE_QUOTE |
TRIPLE_ANTI_QUOTE |
TRIPLE_DOUBLE_QUOTE |
TRIPLE_SINGLE_QUOTE |
| Modifier and Type | Method and Description |
|---|---|
static TsonStringLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TsonStringLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TsonStringLayout DOUBLE_QUOTE
public static final TsonStringLayout SINGLE_QUOTE
public static final TsonStringLayout ANTI_QUOTE
public static final TsonStringLayout TRIPLE_DOUBLE_QUOTE
public static final TsonStringLayout TRIPLE_SINGLE_QUOTE
public static final TsonStringLayout TRIPLE_ANTI_QUOTE
public static TsonStringLayout[] values()
for (TsonStringLayout c : TsonStringLayout.values()) System.out.println(c);
public static TsonStringLayout 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 © 2024 vpc open source initiative. All rights reserved.