public enum YamlScalarTypes extends Enum<YamlScalarTypes>
| Enum Constant and Description |
|---|
COMPLEX |
DOUBLE |
FOLDED |
LITERAL |
PLAIN |
SINGLE |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
String |
getQuoteChar() |
static YamlScalarTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YamlScalarTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YamlScalarTypes COMPLEX
public static final YamlScalarTypes PLAIN
public static final YamlScalarTypes SINGLE
public static final YamlScalarTypes DOUBLE
public static final YamlScalarTypes LITERAL
public static final YamlScalarTypes FOLDED
public static final YamlScalarTypes UNKNOWN
public static YamlScalarTypes[] values()
for (YamlScalarTypes c : YamlScalarTypes.values()) System.out.println(c);
public static YamlScalarTypes 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 nullpublic String getQuoteChar()
Copyright © 2021. All rights reserved.