Uses of Class
org.yaml.snakeyaml.nodes.Tag
-
Packages that use Tag Package Description org.yaml.snakeyaml org.yaml.snakeyaml.constructor org.yaml.snakeyaml.nodes org.yaml.snakeyaml.representer org.yaml.snakeyaml.resolver org.yaml.snakeyaml.serializer -
-
Uses of Tag in org.yaml.snakeyaml
Methods in org.yaml.snakeyaml that return Tag Modifier and Type Method Description Tag
TypeDescription. getTag()
Get tag which shall be used to load or dump the type (class).Methods in org.yaml.snakeyaml with parameters of type Tag Modifier and Type Method Description void
Yaml. addImplicitResolver(Tag tag, java.util.regex.Pattern regexp, java.lang.String first)
Add an implicit scalar detector.void
Yaml. addImplicitResolver(Tag tag, java.util.regex.Pattern regexp, java.lang.String first, int limit)
Add an implicit scalar detector.java.lang.String
Yaml. dumpAs(java.lang.Object data, Tag rootTag, DumperOptions.FlowStyle flowStyle)
Serialize a Java object into a YAML string.void
TypeDescription. setTag(Tag tag)
Deprecated.it will be removed because it is not usedConstructors in org.yaml.snakeyaml with parameters of type Tag Constructor Description TypeDescription(java.lang.Class<? extends java.lang.Object> clazz, Tag tag)
TypeDescription(java.lang.Class<? extends java.lang.Object> clazz, Tag tag, java.lang.Class<?> impl)
-
Uses of Tag in org.yaml.snakeyaml.constructor
Fields in org.yaml.snakeyaml.constructor declared as Tag Modifier and Type Field Description protected Tag
BaseConstructor. rootTag
Fields in org.yaml.snakeyaml.constructor with type parameters of type Tag Modifier and Type Field Description protected java.util.Map<Tag,java.lang.Class<? extends java.lang.Object>>
BaseConstructor. typeTags
protected java.util.Map<Tag,Construct>
BaseConstructor. yamlConstructors
It maps the (explicit or implicit) tag to the Construct implementation. -
Uses of Tag in org.yaml.snakeyaml.nodes
Fields in org.yaml.snakeyaml.nodes declared as Tag Modifier and Type Field Description static Tag
Tag. BINARY
static Tag
Tag. BOOL
static Tag
Tag. FLOAT
static Tag
Tag. INT
static Tag
Tag. MAP
static Tag
Tag. MERGE
static Tag
Tag. NULL
static Tag
Tag. OMAP
static Tag
Tag. PAIRS
static Tag
Tag. SEQ
static Tag
Tag. SET
static Tag
Tag. STR
static Tag
Tag. TIMESTAMP
static Tag
Tag. YAML
Fields in org.yaml.snakeyaml.nodes with type parameters of type Tag Modifier and Type Field Description static java.util.Map<Tag,java.util.Set<java.lang.Class<?>>>
Tag. COMPATIBILITY_MAP
Methods in org.yaml.snakeyaml.nodes that return Tag Modifier and Type Method Description Tag
Node. getTag()
Tag of this node.Methods in org.yaml.snakeyaml.nodes with parameters of type Tag Modifier and Type Method Description void
Node. setTag(Tag tag)
Constructors in org.yaml.snakeyaml.nodes with parameters of type Tag Constructor Description CollectionNode(Tag tag, Mark startMark, Mark endMark, java.lang.Boolean flowStyle)
Deprecated.CollectionNode(Tag tag, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle)
MappingNode(Tag tag, boolean resolved, java.util.List<NodeTuple> value, Mark startMark, Mark endMark, java.lang.Boolean flowStyle)
Deprecated.MappingNode(Tag tag, boolean resolved, java.util.List<NodeTuple> value, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle)
MappingNode(Tag tag, java.util.List<NodeTuple> value, java.lang.Boolean flowStyle)
Deprecated.MappingNode(Tag tag, java.util.List<NodeTuple> value, DumperOptions.FlowStyle flowStyle)
Node(Tag tag, Mark startMark, Mark endMark)
ScalarNode(Tag tag, boolean resolved, java.lang.String value, Mark startMark, Mark endMark, java.lang.Character style)
Deprecated.ScalarNode(Tag tag, boolean resolved, java.lang.String value, Mark startMark, Mark endMark, DumperOptions.ScalarStyle style)
ScalarNode(Tag tag, java.lang.String value, Mark startMark, Mark endMark, java.lang.Character style)
Deprecated.ScalarNode(Tag tag, java.lang.String value, Mark startMark, Mark endMark, DumperOptions.ScalarStyle style)
SequenceNode(Tag tag, boolean resolved, java.util.List<Node> value, Mark startMark, Mark endMark, java.lang.Boolean style)
Deprecated.SequenceNode(Tag tag, boolean resolved, java.util.List<Node> value, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle)
SequenceNode(Tag tag, java.util.List<Node> value, java.lang.Boolean style)
Deprecated.SequenceNode(Tag tag, java.util.List<Node> value, DumperOptions.FlowStyle flowStyle)
-
Uses of Tag in org.yaml.snakeyaml.representer
Fields in org.yaml.snakeyaml.representer with type parameters of type Tag Modifier and Type Field Description protected java.util.Map<java.lang.Class<? extends java.lang.Object>,Tag>
SafeRepresenter. classTags
Methods in org.yaml.snakeyaml.representer with parameters of type Tag Modifier and Type Method Description protected NodeTuple
Representer. representJavaBeanProperty(java.lang.Object javaBean, Property property, java.lang.Object propertyValue, Tag customTag)
Represent one JavaBean property.protected Node
BaseRepresenter. representMapping(Tag tag, java.util.Map<?,?> mapping, DumperOptions.FlowStyle flowStyle)
protected Node
BaseRepresenter. representScalar(Tag tag, java.lang.String value)
protected Node
BaseRepresenter. representScalar(Tag tag, java.lang.String value, DumperOptions.ScalarStyle style)
protected Node
BaseRepresenter. representSequence(Tag tag, java.lang.Iterable<?> sequence, DumperOptions.FlowStyle flowStyle)
-
Uses of Tag in org.yaml.snakeyaml.resolver
Methods in org.yaml.snakeyaml.resolver that return Tag Modifier and Type Method Description Tag
Resolver. resolve(NodeId kind, java.lang.String value, boolean implicit)
Methods in org.yaml.snakeyaml.resolver with parameters of type Tag Modifier and Type Method Description void
Resolver. addImplicitResolver(Tag tag, java.util.regex.Pattern regexp, java.lang.String first)
void
Resolver. addImplicitResolver(Tag tag, java.util.regex.Pattern regexp, java.lang.String first, int limit)
-
Uses of Tag in org.yaml.snakeyaml.serializer
Constructors in org.yaml.snakeyaml.serializer with parameters of type Tag Constructor Description Serializer(Emitable emitter, Resolver resolver, DumperOptions opts, Tag rootTag)
-