Uses of Class
org.yaml.snakeyaml.nodes.Tag
Packages that use Tag
Package
Description
-
Uses of Tag in org.yaml.snakeyaml
Fields in org.yaml.snakeyaml declared as TagMethods in org.yaml.snakeyaml that return TagModifier and TypeMethodDescriptionTypeDescription.getTag()
Get tag which shall be used to load or dump the type (class).Methods in org.yaml.snakeyaml with parameters of type TagModifier and TypeMethodDescriptionvoid
Yaml.addImplicitResolver
(Tag tag, Pattern regexp, String first) Add an implicit scalar detector.void
Yaml.addImplicitResolver
(Tag tag, Pattern regexp, String first, int limit) Add an implicit scalar detector.private void
Yaml.dumpAs
(Object data, Tag rootTag, DumperOptions.FlowStyle flowStyle) Serialize a Java object into a YAML string.Constructors in org.yaml.snakeyaml with parameters of type TagModifierConstructorDescriptionTypeDescription
(Class<? extends Object> clazz, Tag tag) TypeDescription
(Class<? extends Object> clazz, Tag tag, Class<?> impl) -
Uses of Tag in org.yaml.snakeyaml.constructor
Fields in org.yaml.snakeyaml.constructor declared as TagFields in org.yaml.snakeyaml.constructor with type parameters of type Tag -
Uses of Tag in org.yaml.snakeyaml.env
Fields in org.yaml.snakeyaml.env declared as Tag -
Uses of Tag in org.yaml.snakeyaml.nodes
Fields in org.yaml.snakeyaml.nodes declared as TagModifier and TypeFieldDescriptionstatic final Tag
Tag.BINARY
static final Tag
Tag.BOOL
static final Tag
Tag.COMMENT
static final Tag
Tag.FLOAT
static final Tag
Tag.INT
static final Tag
Tag.MAP
static final Tag
Tag.MERGE
static final Tag
Tag.NULL
static final Tag
Tag.OMAP
static final Tag
Tag.PAIRS
static final Tag
Tag.SEQ
static final Tag
Tag.SET
static final Tag
Tag.STR
private Tag
Node.tag
static final Tag
Tag.TIMESTAMP
static final Tag
Tag.YAML
Fields in org.yaml.snakeyaml.nodes with type parameters of type TagModifier and TypeFieldDescriptionMethods in org.yaml.snakeyaml.nodes that return TagMethods in org.yaml.snakeyaml.nodes with parameters of type TagConstructors in org.yaml.snakeyaml.nodes with parameters of type TagModifierConstructorDescriptionCollectionNode
(Tag tag, Mark startMark, Mark endMark, Boolean flowStyle) Deprecated.Since restored in v1.22.CollectionNode
(Tag tag, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle) CreateMappingNode
(Tag tag, boolean resolved, List<NodeTuple> value, Mark startMark, Mark endMark, Boolean flowStyle) Deprecated.MappingNode
(Tag tag, boolean resolved, List<NodeTuple> value, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle) MappingNode
(Tag tag, List<NodeTuple> value, Boolean flowStyle) Deprecated.MappingNode
(Tag tag, List<NodeTuple> value, DumperOptions.FlowStyle flowStyle) Deprecated.ScalarNode
(Tag tag, boolean resolved, String value, Mark startMark, Mark endMark, DumperOptions.ScalarStyle style) Deprecated.ScalarNode
(Tag tag, String value, Mark startMark, Mark endMark, DumperOptions.ScalarStyle style) SequenceNode
(Tag tag, boolean resolved, List<Node> value, Mark startMark, Mark endMark, Boolean style) Deprecated.SequenceNode
(Tag tag, boolean resolved, List<Node> value, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle) SequenceNode
(Tag tag, List<Node> value, Boolean style) Deprecated.SequenceNode
(Tag tag, 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 TagMethods in org.yaml.snakeyaml.representer that return TagModifier and TypeMethodDescriptionSafeRepresenter.addClassTag
(Class<? extends Object> clazz, Tag tag) Define a tag for theClass
to serialize.protected Tag
Methods in org.yaml.snakeyaml.representer with parameters of type TagModifier and TypeMethodDescriptionSafeRepresenter.addClassTag
(Class<? extends Object> clazz, Tag tag) Define a tag for theClass
to serialize.protected Tag
protected NodeTuple
Representer.representJavaBeanProperty
(Object javaBean, Property property, Object propertyValue, Tag customTag) Represent one JavaBean property.protected Node
BaseRepresenter.representMapping
(Tag tag, Map<?, ?> mapping, DumperOptions.FlowStyle flowStyle) protected Node
BaseRepresenter.representScalar
(Tag tag, String value) protected Node
BaseRepresenter.representScalar
(Tag tag, String value, DumperOptions.ScalarStyle style) protected Node
BaseRepresenter.representSequence
(Tag tag, Iterable<?> sequence, DumperOptions.FlowStyle flowStyle) -
Uses of Tag in org.yaml.snakeyaml.resolver
Fields in org.yaml.snakeyaml.resolver declared as TagMethods in org.yaml.snakeyaml.resolver that return TagMethods in org.yaml.snakeyaml.resolver with parameters of type TagModifier and TypeMethodDescriptionvoid
Resolver.addImplicitResolver
(Tag tag, Pattern regexp, String first) void
Resolver.addImplicitResolver
(Tag tag, Pattern regexp, String first, int limit) Add a resolver to resolve a value that matches the provided regular expression to the provided tagConstructors in org.yaml.snakeyaml.resolver with parameters of type Tag -
Uses of Tag in org.yaml.snakeyaml.serializer
Fields in org.yaml.snakeyaml.serializer declared as TagConstructors in org.yaml.snakeyaml.serializer with parameters of type TagModifierConstructorDescriptionSerializer
(Emitable emitter, Resolver resolver, DumperOptions opts, Tag rootTag)