Uses of Class
org.yaml.snakeyaml.nodes.Tag
Packages that use Tag
Package
Description
-
Uses of Tag in org.yaml.snakeyaml
Methods 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 TypeMethodDescriptionvoidYaml.addImplicitResolver(Tag tag, Pattern regexp, String first) Add an implicit scalar detector.voidYaml.addImplicitResolver(Tag tag, Pattern regexp, String first, int limit) Add an implicit scalar detector.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.inspector
Methods in org.yaml.snakeyaml.inspector with parameters of type TagModifier and TypeMethodDescriptionbooleanTagInspector.isGlobalTagAllowed(Tag tag) CheckbooleanUnTrustedTagInspector.isGlobalTagAllowed(Tag tag) Allow none -
Uses of Tag in org.yaml.snakeyaml.nodes
Fields in org.yaml.snakeyaml.nodes declared as TagModifier and TypeFieldDescriptionstatic final TagTag.BINARYstatic final TagTag.BOOLstatic final TagTag.COMMENTstatic final TagTag.FLOATstatic final TagTag.INTstatic final TagTag.MAPstatic final TagTag.MERGEstatic final TagTag.NULLstatic final TagTag.OMAPstatic final TagTag.PAIRSstatic final TagTag.SEQstatic final TagTag.SETstatic final TagTag.STRstatic final TagTag.TIMESTAMPstatic final TagTag.YAMLFields in org.yaml.snakeyaml.nodes with type parameters of type TagMethods 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, DumperOptions.FlowStyle flowStyle) CreateMappingNode(Tag tag, boolean resolved, List<NodeTuple> value, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle) MappingNode(Tag tag, List<NodeTuple> value, DumperOptions.FlowStyle flowStyle) ScalarNode(Tag tag, boolean resolved, String value, Mark startMark, Mark endMark, DumperOptions.ScalarStyle style) ScalarNode(Tag tag, String value, Mark startMark, Mark endMark, DumperOptions.ScalarStyle style) SequenceNode(Tag tag, boolean resolved, List<Node> value, Mark startMark, Mark endMark, DumperOptions.FlowStyle flowStyle) 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 TagModifier and TypeFieldDescriptionSafeRepresenter.classTagsMethods in org.yaml.snakeyaml.representer with parameters of type TagModifier and TypeMethodDescriptionprotected NodeTupleRepresenter.representJavaBeanProperty(Object javaBean, Property property, Object propertyValue, Tag customTag) Represent one JavaBean property.protected NodeBaseRepresenter.representMapping(Tag tag, Map<?, ?> mapping, DumperOptions.FlowStyle flowStyle) protected NodeBaseRepresenter.representScalar(Tag tag, String value) protected NodeBaseRepresenter.representScalar(Tag tag, String value, DumperOptions.ScalarStyle style) protected NodeBaseRepresenter.representSequence(Tag tag, Iterable<?> sequence, DumperOptions.FlowStyle flowStyle) -
Uses of Tag in org.yaml.snakeyaml.resolver
Methods in org.yaml.snakeyaml.resolver that return TagModifier and TypeMethodDescriptionMethods in org.yaml.snakeyaml.resolver with parameters of type TagModifier and TypeMethodDescriptionvoidResolver.addImplicitResolver(Tag tag, Pattern regexp, String first) voidResolver.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 tag -
Uses of Tag in org.yaml.snakeyaml.serializer
Constructors in org.yaml.snakeyaml.serializer with parameters of type TagModifierConstructorDescriptionSerializer(Emitable emitter, Resolver resolver, DumperOptions opts, Tag rootTag)