Uses of Enum
org.yaml.snakeyaml.DumperOptions.FlowStyle
Packages that use DumperOptions.FlowStyle
Package
Description
-
Uses of DumperOptions.FlowStyle in org.yaml.snakeyaml
Fields in org.yaml.snakeyaml declared as DumperOptions.FlowStyleMethods in org.yaml.snakeyaml that return DumperOptions.FlowStyleModifier and TypeMethodDescriptionstatic DumperOptions.FlowStyle
DumperOptions.FlowStyle.fromBoolean
(Boolean flowStyle) Deprecated.Since restored in v1.22.DumperOptions.getDefaultFlowStyle()
getterstatic DumperOptions.FlowStyle
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.FlowStyleModifier and TypeMethodDescriptionYaml.dumpAs
(Object data, Tag rootTag, DumperOptions.FlowStyle flowStyle) Serialize a Java object into a YAML string.void
DumperOptions.setDefaultFlowStyle
(DumperOptions.FlowStyle defaultFlowStyle) setter -
Uses of DumperOptions.FlowStyle in org.yaml.snakeyaml.events
Fields in org.yaml.snakeyaml.events declared as DumperOptions.FlowStyleModifier and TypeFieldDescriptionprivate final DumperOptions.FlowStyle
CollectionStartEvent.flowStyle
Methods in org.yaml.snakeyaml.events that return DumperOptions.FlowStyleModifier and TypeMethodDescriptionCollectionStartEvent.getFlowStyle()
true
if this collection is in flow style,false
for block style.Constructors in org.yaml.snakeyaml.events with parameters of type DumperOptions.FlowStyleModifierConstructorDescriptionCollectionStartEvent
(String anchor, String tag, boolean implicit, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle) CreateMappingStartEvent
(String anchor, String tag, boolean implicit, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle) SequenceStartEvent
(String anchor, 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.FlowStyleMethods in org.yaml.snakeyaml.nodes that return DumperOptions.FlowStyleModifier and TypeMethodDescriptionCollectionNode.getFlowStyle()
Serialization style of this collection.Methods in org.yaml.snakeyaml.nodes with parameters of type DumperOptions.FlowStyleModifier and TypeMethodDescriptionvoid
CollectionNode.setFlowStyle
(DumperOptions.FlowStyle flowStyle) SetterConstructors in org.yaml.snakeyaml.nodes with parameters of type DumperOptions.FlowStyleModifierConstructorDescriptionCollectionNode
(Tag tag, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle) CreateMappingNode
(Tag tag, boolean resolved, List<NodeTuple> value, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle) MappingNode
(Tag tag, List<NodeTuple> value, DumperOptions.FlowStyle flowStyle) SequenceNode
(Tag tag, boolean resolved, List<Node> value, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle) SequenceNode
(Tag tag, List<Node> value, DumperOptions.FlowStyle flowStyle) -
Uses of DumperOptions.FlowStyle in org.yaml.snakeyaml.representer
Fields in org.yaml.snakeyaml.representer declared as DumperOptions.FlowStyleModifier and TypeFieldDescriptionprotected DumperOptions.FlowStyle
BaseRepresenter.defaultFlowStyle
flow style to use if not redefined.Methods in org.yaml.snakeyaml.representer that return DumperOptions.FlowStyleMethods in org.yaml.snakeyaml.representer with parameters of type DumperOptions.FlowStyleModifier and TypeMethodDescriptionprotected Node
BaseRepresenter.representMapping
(Tag tag, Map<?, ?> mapping, DumperOptions.FlowStyle flowStyle) protected Node
BaseRepresenter.representSequence
(Tag tag, Iterable<?> sequence, DumperOptions.FlowStyle flowStyle) void
BaseRepresenter.setDefaultFlowStyle
(DumperOptions.FlowStyle defaultFlowStyle)