| Package | Description |
|---|---|
| org.snakeyaml.engine.v2.api | |
| org.snakeyaml.engine.v2.common | |
| org.snakeyaml.engine.v2.events | |
| org.snakeyaml.engine.v2.nodes | |
| org.snakeyaml.engine.v2.representer |
| Modifier and Type | Method and Description |
|---|---|
FlowStyle |
DumpSettings.getDefaultFlowStyle() |
| Modifier and Type | Method and Description |
|---|---|
DumpSettingsBuilder |
DumpSettingsBuilder.setDefaultFlowStyle(FlowStyle defaultFlowStyle)
Define flow style
|
| Modifier and Type | Method and Description |
|---|---|
static FlowStyle |
FlowStyle.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowStyle[] |
FlowStyle.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
FlowStyle |
CollectionStartEvent.getFlowStyle()
true if this collection is in flow style, false
for block style. |
| Constructor and Description |
|---|
CollectionStartEvent(Optional<Anchor> anchor,
Optional<String> tag,
boolean implicit,
FlowStyle flowStyle,
Optional<Mark> startMark,
Optional<Mark> endMark) |
MappingStartEvent(Optional<Anchor> anchor,
Optional<String> tag,
boolean implicit,
FlowStyle flowStyle) |
MappingStartEvent(Optional<Anchor> anchor,
Optional<String> tag,
boolean implicit,
FlowStyle flowStyle,
Optional<Mark> startMark,
Optional<Mark> endMark) |
SequenceStartEvent(Optional<Anchor> anchor,
Optional<String> tag,
boolean implicit,
FlowStyle flowStyle) |
SequenceStartEvent(Optional<Anchor> anchor,
Optional<String> tag,
boolean implicit,
FlowStyle flowStyle,
Optional<Mark> startMark,
Optional<Mark> endMark) |
| Modifier and Type | Method and Description |
|---|---|
FlowStyle |
CollectionNode.getFlowStyle()
Serialization style of this collection.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CollectionNode.setFlowStyle(FlowStyle flowStyle) |
| Constructor and Description |
|---|
CollectionNode(Tag tag,
FlowStyle flowStyle,
Optional<Mark> startMark,
Optional<Mark> endMark) |
MappingNode(Tag tag,
boolean resolved,
List<NodeTuple> value,
FlowStyle flowStyle,
Optional<Mark> startMark,
Optional<Mark> endMark) |
MappingNode(Tag tag,
List<NodeTuple> value,
FlowStyle flowStyle) |
SequenceNode(Tag tag,
boolean resolved,
List<Node> value,
FlowStyle flowStyle,
Optional<Mark> startMark,
Optional<Mark> endMark) |
SequenceNode(Tag tag,
List<Node> value,
FlowStyle flowStyle) |
| Modifier and Type | Field and Description |
|---|---|
protected FlowStyle |
BaseRepresenter.defaultFlowStyle |
| Modifier and Type | Method and Description |
|---|---|
protected Node |
BaseRepresenter.representMapping(Tag tag,
Map<?,?> mapping,
FlowStyle flowStyle) |
protected Node |
BaseRepresenter.representSequence(Tag tag,
Iterable<?> sequence,
FlowStyle flowStyle) |
Copyright © 2018–2019. All rights reserved.