Uses of Class
org.snakeyaml.engine.v2.common.ScalarStyle
-
-
Uses of ScalarStyle in org.snakeyaml.engine.v2.api
Methods in org.snakeyaml.engine.v2.api that return ScalarStyle Modifier and Type Method Description ScalarStyleDumpSettings. getDefaultScalarStyle()Methods in org.snakeyaml.engine.v2.api with parameters of type ScalarStyle Modifier and Type Method Description DumpSettingsBuilderDumpSettingsBuilder. setDefaultScalarStyle(ScalarStyle defaultScalarStyle)Define default scalar style -
Uses of ScalarStyle in org.snakeyaml.engine.v2.common
Methods in org.snakeyaml.engine.v2.common that return ScalarStyle Modifier and Type Method Description static ScalarStyleScalarStyle. valueOf(String name)Returns the enum constant of this type with the specified name.static ScalarStyle[]ScalarStyle. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of ScalarStyle in org.snakeyaml.engine.v2.events
Methods in org.snakeyaml.engine.v2.events that return ScalarStyle Modifier and Type Method Description ScalarStyleScalarEvent. getScalarStyle()Style of the scalar.Constructors in org.snakeyaml.engine.v2.events with parameters of type ScalarStyle Constructor Description ScalarEvent(Optional<Anchor> anchor, Optional<String> tag, ImplicitTuple implicit, String value, ScalarStyle style)ScalarEvent(Optional<Anchor> anchor, Optional<String> tag, ImplicitTuple implicit, String value, ScalarStyle style, Optional<Mark> startMark, Optional<Mark> endMark) -
Uses of ScalarStyle in org.snakeyaml.engine.v2.nodes
Methods in org.snakeyaml.engine.v2.nodes that return ScalarStyle Modifier and Type Method Description ScalarStyleScalarNode. getScalarStyle()Get scalar style of this node.Constructors in org.snakeyaml.engine.v2.nodes with parameters of type ScalarStyle Constructor Description ScalarNode(Tag tag, boolean resolved, String value, ScalarStyle style, Optional<Mark> startMark, Optional<Mark> endMark)ScalarNode(Tag tag, String value, ScalarStyle style) -
Uses of ScalarStyle in org.snakeyaml.engine.v2.representer
Fields in org.snakeyaml.engine.v2.representer declared as ScalarStyle Modifier and Type Field Description protected ScalarStyleBaseRepresenter. defaultScalarStyleMethods in org.snakeyaml.engine.v2.representer with parameters of type ScalarStyle Modifier and Type Method Description protected NodeBaseRepresenter. representScalar(Tag tag, String value, ScalarStyle style) -
Uses of ScalarStyle in org.snakeyaml.engine.v2.tokens
Methods in org.snakeyaml.engine.v2.tokens that return ScalarStyle Modifier and Type Method Description ScalarStyleScalarToken. getStyle()Constructors in org.snakeyaml.engine.v2.tokens with parameters of type ScalarStyle Constructor Description ScalarToken(String value, boolean plain, ScalarStyle style, Optional<Mark> startMark, Optional<Mark> endMark)
-