Uses of Class
org.snakeyaml.engine.v2.common.FlowStyle
-
Packages that use FlowStyle 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 -
-
Uses of FlowStyle in org.snakeyaml.engine.v2.api
Methods in org.snakeyaml.engine.v2.api that return FlowStyle Modifier and Type Method Description FlowStyleDumpSettings. getDefaultFlowStyle()Methods in org.snakeyaml.engine.v2.api with parameters of type FlowStyle Modifier and Type Method Description DumpSettingsBuilderDumpSettingsBuilder. setDefaultFlowStyle(FlowStyle defaultFlowStyle)Define flow style -
Uses of FlowStyle in org.snakeyaml.engine.v2.common
Methods in org.snakeyaml.engine.v2.common that return FlowStyle Modifier and Type Method Description static FlowStyleFlowStyle. 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. -
Uses of FlowStyle in org.snakeyaml.engine.v2.events
Methods in org.snakeyaml.engine.v2.events that return FlowStyle Modifier and Type Method Description FlowStyleCollectionStartEvent. getFlowStyle()trueif this collection is in flow style,falsefor block style.Constructors in org.snakeyaml.engine.v2.events with parameters of type FlowStyle Constructor 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) -
Uses of FlowStyle in org.snakeyaml.engine.v2.nodes
Methods in org.snakeyaml.engine.v2.nodes that return FlowStyle Modifier and Type Method Description FlowStyleCollectionNode. getFlowStyle()Serialization style of this collection.Methods in org.snakeyaml.engine.v2.nodes with parameters of type FlowStyle Modifier and Type Method Description voidCollectionNode. setFlowStyle(FlowStyle flowStyle)Constructors in org.snakeyaml.engine.v2.nodes with parameters of type FlowStyle Constructor 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) -
Uses of FlowStyle in org.snakeyaml.engine.v2.representer
Fields in org.snakeyaml.engine.v2.representer declared as FlowStyle Modifier and Type Field Description protected FlowStyleBaseRepresenter. defaultFlowStyleMethods in org.snakeyaml.engine.v2.representer with parameters of type FlowStyle Modifier and Type Method Description protected NodeBaseRepresenter. representMapping(Tag tag, Map<?,?> mapping, FlowStyle flowStyle)protected NodeBaseRepresenter. representSequence(Tag tag, Iterable<?> sequence, FlowStyle flowStyle)
-