Uses of Class
org.yaml.snakeyaml.nodes.Tag

Packages that use Tag
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
 Tag DumperOptions.getExplicitRoot()
          Deprecated. do not use explicit root Tag
 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
 void Yaml.addImplicitResolver(Tag tag, Pattern regexp, String first)
          Add an implicit scalar detector.
 String Yaml.dumpAs(Object data, Tag rootTag, DumperOptions.FlowStyle flowStyle)
           Serialize a Java object into a YAML string.
 void DumperOptions.setExplicitRoot(Tag expRoot)
          Deprecated. do not use explicit root Tag
 void TypeDescription.setTag(Tag tag)
          Set tag to be used to load or dump the type (class).
 

Constructors in org.yaml.snakeyaml with parameters of type Tag
TypeDescription(Class<? extends Object> clazz, Tag tag)
           
 

Uses of Tag in org.yaml.snakeyaml.constructor
 

Fields in org.yaml.snakeyaml.constructor declared as Tag
protected  Tag BaseConstructor.rootTag
           
 

Fields in org.yaml.snakeyaml.constructor with type parameters of type Tag
protected  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
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.VALUE
           
static Tag Tag.YAML
           
 

Fields in org.yaml.snakeyaml.nodes with type parameters of type Tag
static Map<Tag,Set<Class<?>>> Tag.COMPATIBILITY_MAP
           
 

Methods in org.yaml.snakeyaml.nodes that return Tag
 Tag Node.getTag()
          Tag of this node.
 

Methods in org.yaml.snakeyaml.nodes with parameters of type Tag
 int Tag.compareTo(Tag o)
           
 void Node.setTag(Tag tag)
           
 

Constructors in org.yaml.snakeyaml.nodes with parameters of type Tag
CollectionNode(Tag tag, Mark startMark, Mark endMark, Boolean flowStyle)
           
MappingNode(Tag tag, boolean resolved, List<NodeTuple> value, Mark startMark, Mark endMark, Boolean flowStyle)
           
MappingNode(Tag tag, List<NodeTuple> value, Boolean flowStyle)
           
Node(Tag tag, Mark startMark, Mark endMark)
           
ScalarNode(Tag tag, boolean resolved, String value, Mark startMark, Mark endMark, Character style)
           
ScalarNode(Tag tag, String value, Mark startMark, Mark endMark, Character style)
           
SequenceNode(Tag tag, boolean resolved, List<Node> value, Mark startMark, Mark endMark, Boolean flowStyle)
           
SequenceNode(Tag tag, List<Node> value, Boolean flowStyle)
           
 

Uses of Tag in org.yaml.snakeyaml.representer
 

Methods in org.yaml.snakeyaml.representer with parameters of type Tag
protected  NodeTuple Representer.representJavaBeanProperty(Object javaBean, Property property, Object propertyValue, Tag customTag)
          Represent one JavaBean property.
protected  Node BaseRepresenter.representMapping(Tag tag, Map<? extends Object,Object> mapping, Boolean flowStyle)
           
protected  Node BaseRepresenter.representScalar(Tag tag, String value)
           
protected  Node BaseRepresenter.representScalar(Tag tag, String value, Character style)
           
protected  Node BaseRepresenter.representSequence(Tag tag, Iterable<? extends Object> sequence, Boolean flowStyle)
           
 

Uses of Tag in org.yaml.snakeyaml.resolver
 

Methods in org.yaml.snakeyaml.resolver that return Tag
 Tag Resolver.resolve(NodeId kind, String value, boolean implicit)
           
 

Methods in org.yaml.snakeyaml.resolver with parameters of type Tag
 void Resolver.addImplicitResolver(Tag tag, Pattern regexp, String first)
           
 

Uses of Tag in org.yaml.snakeyaml.serializer
 

Constructors in org.yaml.snakeyaml.serializer with parameters of type Tag
Serializer(Emitable emitter, Resolver resolver, DumperOptions opts, Tag rootTag)
           
 



Copyright © 2008-2012. All Rights Reserved.