protected static enum YamlCommentReader.ReaderStage extends Enum<YamlCommentReader.ReaderStage>
Enum Constant and Description |
---|
AFTER_KEY |
COMMENT |
END_OF_FILE |
END_OF_LINE |
KEY |
NEW_LINE |
QUOTE_CLOSE |
QUOTE_OPEN |
START |
VALUE |
Modifier and Type | Method and Description |
---|---|
static YamlCommentReader.ReaderStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YamlCommentReader.ReaderStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YamlCommentReader.ReaderStage START
public static final YamlCommentReader.ReaderStage NEW_LINE
public static final YamlCommentReader.ReaderStage KEY
public static final YamlCommentReader.ReaderStage AFTER_KEY
public static final YamlCommentReader.ReaderStage VALUE
public static final YamlCommentReader.ReaderStage COMMENT
public static final YamlCommentReader.ReaderStage QUOTE_OPEN
public static final YamlCommentReader.ReaderStage QUOTE_CLOSE
public static final YamlCommentReader.ReaderStage END_OF_LINE
public static final YamlCommentReader.ReaderStage END_OF_FILE
public static YamlCommentReader.ReaderStage[] values()
for (YamlCommentReader.ReaderStage c : YamlCommentReader.ReaderStage.values()) System.out.println(c);
public static YamlCommentReader.ReaderStage 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 © 2023. All rights reserved.