Uses of Class
org.yaml.snakeyaml.nodes.Tag
-
-
Uses of Tag in org.yaml.snakeyaml
Methods in org.yaml.snakeyaml that return Tag Modifier and Type Method Description TagTypeDescription. 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 voidYaml. 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.StringYaml. 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 Tag Constructor Description TypeDescription(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 Tag Modifier and Type Field Description protected TagBaseConstructor. rootTagthe tag for the root nodeFields in org.yaml.snakeyaml.constructor with type parameters of type Tag Modifier and Type Field Description protected Map<Tag,Class<? extends Object>>BaseConstructor. typeTagsregister classes for tagsprotected Map<Tag,Construct>BaseConstructor. yamlConstructorsIt maps the (explicit or implicit) tag to the Construct implementation. -
Uses of Tag in org.yaml.snakeyaml.env
Fields in org.yaml.snakeyaml.env declared as Tag Modifier and Type Field Description static TagEnvScalarConstructor. ENV_TAGTag to indicate ENV -
Uses of Tag in org.yaml.snakeyaml.nodes
Fields in org.yaml.snakeyaml.nodes declared as Tag Modifier and Type Field Description static TagTag. BINARYstatic TagTag. BOOLstatic TagTag. COMMENTstatic TagTag. FLOATstatic TagTag. INTstatic TagTag. MAPstatic TagTag. MERGEstatic TagTag. NULLstatic TagTag. OMAPstatic TagTag. PAIRSstatic TagTag. SEQstatic TagTag. SETstatic TagTag. STRstatic TagTag. TIMESTAMPstatic TagTag. YAMLFields in org.yaml.snakeyaml.nodes with type parameters of type Tag Modifier and Type Field Description static Set<Tag>Tag. standardTagsMethods in org.yaml.snakeyaml.nodes that return Tag Modifier and Type Method Description TagNode. getTag()Tag of this node.Methods in org.yaml.snakeyaml.nodes with parameters of type Tag Modifier and Type Method Description voidNode. setTag(Tag tag)Constructors in org.yaml.snakeyaml.nodes with parameters of type Tag Constructor Description CollectionNode(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)Node(Tag tag, Mark startMark, Mark endMark)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 Tag Modifier and Type Field Description protected Map<Class<? extends Object>,Tag>SafeRepresenter. classTagsMethods in org.yaml.snakeyaml.representer with parameters of type Tag Modifier and Type Method Description protected 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 Tag Modifier and Type Method Description TagResolver. resolve(NodeId kind, String value, boolean implicit)Methods in org.yaml.snakeyaml.resolver with parameters of type Tag Modifier and Type Method Description voidResolver. 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 Tag Constructor Description Serializer(Emitable emitter, Resolver resolver, DumperOptions opts, Tag rootTag)
-