Uses of Interface
org.snakeyaml.engine.v2.api.ConstructNode
Packages that use ConstructNode
Package
Description
-
Uses of ConstructNode in org.snakeyaml.engine.v2.api
Fields in org.snakeyaml.engine.v2.api with type parameters of type ConstructNodeModifier and TypeFieldDescriptionprivate final Map
<Tag, ConstructNode> LoadSettings.tagConstructors
private Map
<Tag, ConstructNode> LoadSettingsBuilder.tagConstructors
Methods in org.snakeyaml.engine.v2.api that return types with arguments of type ConstructNodeMethod parameters in org.snakeyaml.engine.v2.api with type arguments of type ConstructNodeModifier and TypeMethodDescriptionLoadSettingsBuilder.setTagConstructors
(Map<Tag, ConstructNode> tagConstructors) Provide constructors for the specified tags.Constructor parameters in org.snakeyaml.engine.v2.api with type arguments of type ConstructNodeModifierConstructorDescription(package private)
LoadSettings
(String label, Map<Tag, ConstructNode> tagConstructors, IntFunction<List<Object>> defaultList, IntFunction<Set<Object>> defaultSet, IntFunction<Map<Object, Object>> defaultMap, UnaryOperator<SpecVersion> versionFunction, Integer bufferSize, boolean allowDuplicateKeys, boolean allowRecursiveKeys, int maxAliasesForCollections, boolean useMarks, Map<SettingKey, Object> customProperties, 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 ConstructNodeModifier and TypeClassDescriptionclass
Share common code for scalar constructsclass
Create nullclass
Construct scalar for format ${VARIABLE} replacing the template with the value from environment.class
Create Map instanceclass
Create the List implementation (configured in setting)class
Create Set instancesclass
Create String instancesFields in org.snakeyaml.engine.v2.constructor with type parameters of type ConstructNodeModifier and TypeFieldDescriptionprotected final 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 ConstructNodeModifier and TypeMethodDescriptionprotected 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 ConstructNodeModifier and TypeClassDescriptionclass
Create Boolean instancesclass
Create Double instances for floatclass
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 ConstructNodeModifier and TypeClassDescriptionclass
Create instances of Optionalclass
Create instances of UUID classclass
Create instances bytes for binaryclass
Create Boolean instancesclass
Create Double instances for floatclass
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 ConstructNodeModifier and TypeFieldDescriptionprivate final Map
<Tag, ConstructNode> CoreSchema.tagConstructors
private final Map
<Tag, ConstructNode> JsonSchema.tagConstructors
Methods in org.snakeyaml.engine.v2.schema that return types with arguments of type ConstructNodeModifier and TypeMethodDescriptionCoreSchema.getSchemaTagConstructors()
Provide constructs to support the schema (bool, int, float)FailsafeSchema.getSchemaTagConstructors()
No constructs providedJsonSchema.getSchemaTagConstructors()
Basic constructsSchema.getSchemaTagConstructors()
Provide the way to construct the resolved tag.