Uses of Class
org.yaml.snakeyaml.DumperOptions.FlowStyle
-
Packages that use DumperOptions.FlowStyle Package Description org.yaml.snakeyaml org.yaml.snakeyaml.events org.yaml.snakeyaml.nodes org.yaml.snakeyaml.representer -
-
Uses of DumperOptions.FlowStyle in org.yaml.snakeyaml
Fields in org.yaml.snakeyaml declared as DumperOptions.FlowStyle Modifier and Type Field Description private DumperOptions.FlowStyle
DumperOptions. defaultFlowStyle
Methods in org.yaml.snakeyaml that return DumperOptions.FlowStyle Modifier and Type Method Description static DumperOptions.FlowStyle
DumperOptions.FlowStyle. fromBoolean(java.lang.Boolean flowStyle)
Deprecated.DumperOptions.FlowStyle
DumperOptions. getDefaultFlowStyle()
static DumperOptions.FlowStyle
DumperOptions.FlowStyle. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DumperOptions.FlowStyle[]
DumperOptions.FlowStyle. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.yaml.snakeyaml with parameters of type DumperOptions.FlowStyle Modifier and Type Method Description java.lang.String
Yaml. dumpAs(java.lang.Object data, Tag rootTag, DumperOptions.FlowStyle flowStyle)
Serialize a Java object into a YAML string.void
DumperOptions. setDefaultFlowStyle(DumperOptions.FlowStyle defaultFlowStyle)
-
Uses of DumperOptions.FlowStyle in org.yaml.snakeyaml.events
Fields in org.yaml.snakeyaml.events declared as DumperOptions.FlowStyle Modifier and Type Field Description private DumperOptions.FlowStyle
CollectionStartEvent. flowStyle
Methods in org.yaml.snakeyaml.events that return DumperOptions.FlowStyle Modifier and Type Method Description DumperOptions.FlowStyle
CollectionStartEvent. getFlowStyle()
true
if this collection is in flow style,false
for block style.Constructors in org.yaml.snakeyaml.events with parameters of type DumperOptions.FlowStyle Constructor Description CollectionStartEvent(java.lang.String anchor, java.lang.String tag, boolean implicit, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle)
MappingStartEvent(java.lang.String anchor, java.lang.String tag, boolean implicit, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle)
SequenceStartEvent(java.lang.String anchor, java.lang.String tag, boolean implicit, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle)
-
Uses of DumperOptions.FlowStyle in org.yaml.snakeyaml.nodes
Fields in org.yaml.snakeyaml.nodes declared as DumperOptions.FlowStyle Modifier and Type Field Description private DumperOptions.FlowStyle
CollectionNode. flowStyle
Methods in org.yaml.snakeyaml.nodes that return DumperOptions.FlowStyle Modifier and Type Method Description DumperOptions.FlowStyle
CollectionNode. getFlowStyle()
Serialization style of this collection.Methods in org.yaml.snakeyaml.nodes with parameters of type DumperOptions.FlowStyle Modifier and Type Method Description void
CollectionNode. setFlowStyle(DumperOptions.FlowStyle flowStyle)
Constructors in org.yaml.snakeyaml.nodes with parameters of type DumperOptions.FlowStyle Constructor Description CollectionNode(Tag tag, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle)
MappingNode(Tag tag, boolean resolved, java.util.List<NodeTuple> value, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle)
MappingNode(Tag tag, java.util.List<NodeTuple> value, DumperOptions.FlowStyle flowStyle)
SequenceNode(Tag tag, boolean resolved, java.util.List<Node> value, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle)
SequenceNode(Tag tag, java.util.List<Node> value, DumperOptions.FlowStyle flowStyle)
-
Uses of DumperOptions.FlowStyle in org.yaml.snakeyaml.representer
Fields in org.yaml.snakeyaml.representer declared as DumperOptions.FlowStyle Modifier and Type Field Description protected DumperOptions.FlowStyle
BaseRepresenter. defaultFlowStyle
Methods in org.yaml.snakeyaml.representer that return DumperOptions.FlowStyle Modifier and Type Method Description DumperOptions.FlowStyle
BaseRepresenter. getDefaultFlowStyle()
Methods in org.yaml.snakeyaml.representer with parameters of type DumperOptions.FlowStyle Modifier and Type Method Description protected Node
BaseRepresenter. representMapping(Tag tag, java.util.Map<?,?> mapping, DumperOptions.FlowStyle flowStyle)
protected Node
BaseRepresenter. representSequence(Tag tag, java.lang.Iterable<?> sequence, DumperOptions.FlowStyle flowStyle)
void
BaseRepresenter. setDefaultFlowStyle(DumperOptions.FlowStyle defaultFlowStyle)
-