Uses of Interface
org.yaml.snakeyaml.constructor.Construct
-
Packages that use Construct Package Description org.yaml.snakeyaml.constructor org.yaml.snakeyaml.env org.yaml.snakeyaml.extensions.compactnotation -
-
Uses of Construct in org.yaml.snakeyaml.constructor
Classes in org.yaml.snakeyaml.constructor that implement Construct Modifier and Type Class Description class
AbstractConstruct
Because recursive structures are not very common we provide a way to save some typing when extending a constructorprotected class
Constructor.ConstructMapping
Construct mapping instance (Map, JavaBean) when the runtime class is known.protected class
Constructor.ConstructScalar
Construct scalar instance when the runtime class is known.protected class
Constructor.ConstructSequence
Construct sequence (List, Array, or immutable object) when the runtime class is known.protected class
Constructor.ConstructYamlObject
Construct an instance when the runtime class is not known but a global tag with a class name is defined.static class
SafeConstructor.ConstructUndefined
class
SafeConstructor.ConstructYamlBinary
class
SafeConstructor.ConstructYamlBool
class
SafeConstructor.ConstructYamlFloat
class
SafeConstructor.ConstructYamlInt
class
SafeConstructor.ConstructYamlMap
class
SafeConstructor.ConstructYamlNull
class
SafeConstructor.ConstructYamlOmap
class
SafeConstructor.ConstructYamlPairs
class
SafeConstructor.ConstructYamlSeq
class
SafeConstructor.ConstructYamlSet
class
SafeConstructor.ConstructYamlStr
static class
SafeConstructor.ConstructYamlTimestamp
Fields in org.yaml.snakeyaml.constructor with type parameters of type Construct Modifier and Type Field Description protected java.util.Map<NodeId,Construct>
BaseConstructor. yamlClassConstructors
It maps the node kind to the the Construct implementation.protected java.util.Map<Tag,Construct>
BaseConstructor. yamlConstructors
It maps the (explicit or implicit) tag to the Construct implementation.protected java.util.Map<java.lang.String,Construct>
BaseConstructor. yamlMultiConstructors
It maps the (explicit or implicit) tag to the Construct implementation.Methods in org.yaml.snakeyaml.constructor that return Construct Modifier and Type Method Description protected Construct
BaseConstructor. getConstructor(Node node)
Get the constructor to construct the Node.private Construct
Constructor.ConstructYamlObject. getConstructor(Node node)
-
Uses of Construct in org.yaml.snakeyaml.env
Classes in org.yaml.snakeyaml.env that implement Construct Modifier and Type Class Description private class
EnvScalarConstructor.ConstructEnv
-
Uses of Construct in org.yaml.snakeyaml.extensions.compactnotation
Classes in org.yaml.snakeyaml.extensions.compactnotation that implement Construct Modifier and Type Class Description class
CompactConstructor.ConstructCompactObject
Fields in org.yaml.snakeyaml.extensions.compactnotation declared as Construct Modifier and Type Field Description private Construct
CompactConstructor. compactConstruct
Methods in org.yaml.snakeyaml.extensions.compactnotation that return Construct Modifier and Type Method Description protected Construct
CompactConstructor. createCompactConstruct()
private Construct
CompactConstructor. getCompactConstruct()
protected Construct
CompactConstructor. getConstructor(Node node)
-