Uses of Interface
org.snakeyaml.engine.v2.api.ConstructNode
-
-
Uses of ConstructNode in org.snakeyaml.engine.v2.api
Fields in org.snakeyaml.engine.v2.api with type parameters of type ConstructNode Modifier and Type Field Description private java.util.Map<Tag,ConstructNode>
LoadSettings. tagConstructors
private java.util.Map<Tag,ConstructNode>
LoadSettingsBuilder. tagConstructors
Methods in org.snakeyaml.engine.v2.api that return types with arguments of type ConstructNode Modifier and Type Method Description java.util.Map<Tag,ConstructNode>
LoadSettings. getTagConstructors()
Method parameters in org.snakeyaml.engine.v2.api with type arguments of type ConstructNode Modifier and Type Method Description LoadSettingsBuilder
LoadSettingsBuilder. setTagConstructors(java.util.Map<Tag,ConstructNode> tagConstructors)
Provide constructors for the specified tags.Constructor parameters in org.snakeyaml.engine.v2.api with type arguments of type ConstructNode Constructor Description LoadSettings(java.lang.String label, java.util.Map<Tag,ConstructNode> tagConstructors, java.util.function.IntFunction<java.util.List<java.lang.Object>> defaultList, java.util.function.IntFunction<java.util.Set<java.lang.Object>> defaultSet, java.util.function.IntFunction<java.util.Map<java.lang.Object,java.lang.Object>> defaultMap, java.util.function.UnaryOperator<SpecVersion> versionFunction, java.lang.Integer bufferSize, boolean allowDuplicateKeys, boolean allowRecursiveKeys, int maxAliasesForCollections, boolean useMarks, java.util.Map<SettingKey,java.lang.Object> customProperties, java.util.Optional<EnvConfig> envConfig, boolean parseComments, int codePointLimit, Schema schema)
-
Uses of ConstructNode in org.snakeyaml.engine.v2.constructor
Classes in org.snakeyaml.engine.v2.constructor that implement ConstructNode Modifier and Type Class Description class
ConstructScalar
Share common code for scalar constructsclass
ConstructYamlNull
Create nullclass
StandardConstructor.ConstructEnv
Construct scalar for format ${VARIABLE} replacing the template with the value from environment.class
StandardConstructor.ConstructYamlMap
Create Map instanceclass
StandardConstructor.ConstructYamlSeq
Create the List implementation (configured in setting)class
StandardConstructor.ConstructYamlSet
Create Set instancesclass
StandardConstructor.ConstructYamlStr
Create String instancesFields in org.snakeyaml.engine.v2.constructor with type parameters of type ConstructNode Modifier and Type Field Description protected java.util.Map<Tag,ConstructNode>
BaseConstructor. tagConstructors
It maps the (explicit or implicit) tag to the Construct implementation.Methods in org.snakeyaml.engine.v2.constructor that return types with arguments of type ConstructNode Modifier and Type Method Description protected java.util.Optional<ConstructNode>
BaseConstructor. findConstructorFor(Node node)
-
Uses of ConstructNode in org.snakeyaml.engine.v2.constructor.core
Classes in org.snakeyaml.engine.v2.constructor.core that implement ConstructNode Modifier and Type Class Description class
ConstructYamlCoreBool
Create Boolean instancesclass
ConstructYamlCoreFloat
Create Double instances for floatclass
ConstructYamlCoreInt
Create instances for numbers (Integer, Long, BigInteger) -
Uses of ConstructNode in org.snakeyaml.engine.v2.constructor.json
Classes in org.snakeyaml.engine.v2.constructor.json that implement ConstructNode Modifier and Type Class Description class
ConstructOptionalClass
Create instances of Optionalclass
ConstructUuidClass
Create instances of UUID classclass
ConstructYamlBinary
Create instances bytes for binaryclass
ConstructYamlJsonBool
Create Boolean instancesclass
ConstructYamlJsonFloat
Create Double instances for floatclass
ConstructYamlJsonInt
Create instances for numbers (Integer, Long, BigInteger) -
Uses of ConstructNode in org.snakeyaml.engine.v2.schema
Fields in org.snakeyaml.engine.v2.schema with type parameters of type ConstructNode Modifier and Type Field Description private java.util.Map<Tag,ConstructNode>
CoreSchema. tagConstructors
private java.util.Map<Tag,ConstructNode>
JsonSchema. tagConstructors
Methods in org.snakeyaml.engine.v2.schema that return types with arguments of type ConstructNode Modifier and Type Method Description java.util.Map<Tag,ConstructNode>
CoreSchema. getSchemaTagConstructors()
Provide constructs to support the schema (bool, int, float)java.util.Map<Tag,ConstructNode>
FailsafeSchema. getSchemaTagConstructors()
No constructs providedjava.util.Map<Tag,ConstructNode>
JsonSchema. getSchemaTagConstructors()
Basic constructsjava.util.Map<Tag,ConstructNode>
Schema. getSchemaTagConstructors()
Provide the way to construct the resolved tag.
-