Uses of Class
org.snakeyaml.engine.v2.nodes.Tag
-
Packages that use Tag Package Description org.snakeyaml.engine.v2.api org.snakeyaml.engine.v2.constructor org.snakeyaml.engine.v2.nodes org.snakeyaml.engine.v2.representer org.snakeyaml.engine.v2.resolver -
-
Uses of Tag in org.snakeyaml.engine.v2.api
Methods in org.snakeyaml.engine.v2.api that return types with arguments of type Tag Modifier and Type Method Description Optional<Tag>DumpSettings. getExplicitRootTag()Map<Tag,ConstructNode>LoadSettings. getTagConstructors()Method parameters in org.snakeyaml.engine.v2.api with type arguments of type Tag Modifier and Type Method Description DumpSettingsBuilderDumpSettingsBuilder. setExplicitRootTag(Optional<Tag> explicitRootTag)Define rootTagor let the tag to be detected automaticallyLoadSettingsBuilderLoadSettingsBuilder. setTagConstructors(Map<Tag,ConstructNode> tagConstructors)Provide constructors for the specified tags. -
Uses of Tag in org.snakeyaml.engine.v2.constructor
Fields in org.snakeyaml.engine.v2.constructor with type parameters of type Tag Modifier and Type Field Description protected Map<Tag,ConstructNode>BaseConstructor. tagConstructorsIt maps the (explicit or implicit) tag to the Construct implementation. -
Uses of Tag in org.snakeyaml.engine.v2.nodes
Fields in org.snakeyaml.engine.v2.nodes declared as Tag Modifier and Type Field Description static TagTag. BINARYstatic TagTag. BOOLstatic TagTag. COMMENTstatic TagTag. ENV_TAGstatic TagTag. FLOATstatic TagTag. INTstatic TagTag. MAPstatic TagTag. NULLstatic TagTag. SEQstatic TagTag. SETstatic TagTag. STRMethods in org.snakeyaml.engine.v2.nodes that return Tag Modifier and Type Method Description TagNode. getTag()Tag of this node.Methods in org.snakeyaml.engine.v2.nodes with parameters of type Tag Modifier and Type Method Description voidNode. setTag(Tag tag)Constructors in org.snakeyaml.engine.v2.nodes with parameters of type Tag Constructor Description CollectionNode(Tag tag, FlowStyle flowStyle, Optional<Mark> startMark, Optional<Mark> endMark)MappingNode(Tag tag, boolean resolved, List<NodeTuple> value, FlowStyle flowStyle, Optional<Mark> startMark, Optional<Mark> endMark)MappingNode(Tag tag, List<NodeTuple> value, FlowStyle flowStyle)Node(Tag tag, Optional<Mark> startMark, Optional<Mark> endMark)Create Node to be parsedScalarNode(Tag tag, boolean resolved, String value, ScalarStyle style, Optional<Mark> startMark, Optional<Mark> endMark)ScalarNode(Tag tag, String value, ScalarStyle style)SequenceNode(Tag tag, boolean resolved, List<Node> value, FlowStyle flowStyle, Optional<Mark> startMark, Optional<Mark> endMark)SequenceNode(Tag tag, List<Node> value, FlowStyle flowStyle) -
Uses of Tag in org.snakeyaml.engine.v2.representer
Fields in org.snakeyaml.engine.v2.representer with type parameters of type Tag Modifier and Type Field Description protected Map<Class<? extends Object>,Tag>StandardRepresenter. classTagsMethods in org.snakeyaml.engine.v2.representer that return Tag Modifier and Type Method Description TagStandardRepresenter. addClassTag(Class<? extends Object> clazz, Tag tag)Define a tag for theClassto serialize.protected TagStandardRepresenter. getTag(Class<?> clazz, Tag defaultTag)Methods in org.snakeyaml.engine.v2.representer with parameters of type Tag Modifier and Type Method Description TagStandardRepresenter. addClassTag(Class<? extends Object> clazz, Tag tag)Define a tag for theClassto serialize.protected TagStandardRepresenter. getTag(Class<?> clazz, Tag defaultTag)protected NodeBaseRepresenter. representMapping(Tag tag, Map<?,?> mapping, FlowStyle flowStyle)protected NodeBaseRepresenter. representScalar(Tag tag, String value)protected NodeBaseRepresenter. representScalar(Tag tag, String value, ScalarStyle style)protected NodeBaseRepresenter. representSequence(Tag tag, Iterable<?> sequence, FlowStyle flowStyle) -
Uses of Tag in org.snakeyaml.engine.v2.resolver
Methods in org.snakeyaml.engine.v2.resolver that return Tag Modifier and Type Method Description TagJsonScalarResolver. resolve(String value, Boolean implicit)TagScalarResolver. resolve(String value, Boolean implicit)Resolve (detect) the tag of the scalar node of the given type.Methods in org.snakeyaml.engine.v2.resolver with parameters of type Tag Modifier and Type Method Description voidJsonScalarResolver. addImplicitResolver(Tag tag, Pattern regexp, String first)
-