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
Fields in org.snakeyaml.engine.v2.api declared as FlowStyle Modifier and Type Field Description private FlowStyleDumpSettings. defaultFlowStyleprivate FlowStyleDumpSettingsBuilder. defaultFlowStyleMethods 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 styleConstructors in org.snakeyaml.engine.v2.api with parameters of type FlowStyle Constructor Description DumpSettings(boolean explicitStart, boolean explicitEnd, java.util.Optional<Tag> explicitRootTag, AnchorGenerator anchorGenerator, java.util.Optional<SpecVersion> yamlDirective, java.util.Map<java.lang.String,java.lang.String> tagDirective, FlowStyle defaultFlowStyle, ScalarStyle defaultScalarStyle, NonPrintableStyle nonPrintableStyle, Schema schema, boolean canonical, boolean multiLineFlow, boolean useUnicodeEncoding, int indent, int indicatorIndent, int width, java.lang.String bestLineBreak, boolean splitLines, int maxSimpleKeyLength, java.util.Map<SettingKey,java.lang.Object> customProperties, boolean indentWithIndicator, boolean dumpComments) -
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(java.lang.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
Fields in org.snakeyaml.engine.v2.events declared as FlowStyle Modifier and Type Field Description private FlowStyleCollectionStartEvent. flowStyleMethods 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(java.util.Optional<Anchor> anchor, java.util.Optional<java.lang.String> tag, boolean implicit, FlowStyle flowStyle, java.util.Optional<Mark> startMark, java.util.Optional<Mark> endMark)MappingStartEvent(java.util.Optional<Anchor> anchor, java.util.Optional<java.lang.String> tag, boolean implicit, FlowStyle flowStyle)MappingStartEvent(java.util.Optional<Anchor> anchor, java.util.Optional<java.lang.String> tag, boolean implicit, FlowStyle flowStyle, java.util.Optional<Mark> startMark, java.util.Optional<Mark> endMark)SequenceStartEvent(java.util.Optional<Anchor> anchor, java.util.Optional<java.lang.String> tag, boolean implicit, FlowStyle flowStyle)SequenceStartEvent(java.util.Optional<Anchor> anchor, java.util.Optional<java.lang.String> tag, boolean implicit, FlowStyle flowStyle, java.util.Optional<Mark> startMark, java.util.Optional<Mark> endMark) -
Uses of FlowStyle in org.snakeyaml.engine.v2.nodes
Fields in org.snakeyaml.engine.v2.nodes declared as FlowStyle Modifier and Type Field Description private FlowStyleCollectionNode. flowStyleMethods 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, java.util.Optional<Mark> startMark, java.util.Optional<Mark> endMark)MappingNode(Tag tag, boolean resolved, java.util.List<NodeTuple> value, FlowStyle flowStyle, java.util.Optional<Mark> startMark, java.util.Optional<Mark> endMark)CreateMappingNode(Tag tag, java.util.List<NodeTuple> value, FlowStyle flowStyle)CreateSequenceNode(Tag tag, boolean resolved, java.util.List<Node> value, FlowStyle flowStyle, java.util.Optional<Mark> startMark, java.util.Optional<Mark> endMark)SequenceNode(Tag tag, java.util.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. defaultFlowStyleflow style for collectionsMethods in org.snakeyaml.engine.v2.representer with parameters of type FlowStyle Modifier and Type Method Description protected NodeBaseRepresenter. representMapping(Tag tag, java.util.Map<?,?> mapping, FlowStyle flowStyle)Create Node for the provided Mapprotected NodeBaseRepresenter. representSequence(Tag tag, java.lang.Iterable<?> sequence, FlowStyle flowStyle)Create Node
-