Uses of Interface
org.snakeyaml.engine.v2.serializer.AnchorGenerator
-
Packages that use AnchorGenerator Package Description org.snakeyaml.engine.v2.api org.snakeyaml.engine.v2.serializer -
-
Uses of AnchorGenerator in org.snakeyaml.engine.v2.api
Fields in org.snakeyaml.engine.v2.api declared as AnchorGenerator Modifier and Type Field Description private AnchorGenerator
DumpSettings. anchorGenerator
private AnchorGenerator
DumpSettingsBuilder. anchorGenerator
Methods in org.snakeyaml.engine.v2.api that return AnchorGenerator Modifier and Type Method Description AnchorGenerator
DumpSettings. getAnchorGenerator()
Methods in org.snakeyaml.engine.v2.api with parameters of type AnchorGenerator Modifier and Type Method Description DumpSettingsBuilder
DumpSettingsBuilder. setAnchorGenerator(AnchorGenerator anchorGenerator)
Define anchor name generator (by default 'id' + number)Constructors in org.snakeyaml.engine.v2.api with parameters of type AnchorGenerator 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 AnchorGenerator in org.snakeyaml.engine.v2.serializer
Classes in org.snakeyaml.engine.v2.serializer that implement AnchorGenerator Modifier and Type Class Description class
NumberAnchorGenerator
Simple generate of the format id + number
-