Uses of Class
org.snakeyaml.engine.v2.nodes.Tag
-
-
Uses of Tag in org.snakeyaml.engine.v2.api
Fields in org.snakeyaml.engine.v2.api with type parameters of type Tag Modifier and Type Field Description private java.util.Optional<Tag>DumpSettings. explicitRootTagprivate java.util.Optional<Tag>DumpSettingsBuilder. explicitRootTagprivate java.util.Map<Tag,ConstructNode>LoadSettings. tagConstructorsprivate java.util.Map<Tag,ConstructNode>LoadSettingsBuilder. tagConstructorsMethods in org.snakeyaml.engine.v2.api that return types with arguments of type Tag Modifier and Type Method Description java.util.Optional<Tag>DumpSettings. getExplicitRootTag()java.util.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(java.util.Optional<Tag> explicitRootTag)Define rootTagor let the tag to be detected automaticallyLoadSettingsBuilderLoadSettingsBuilder. setTagConstructors(java.util.Map<Tag,ConstructNode> tagConstructors)Provide constructors for the specified tags.Constructor parameters in org.snakeyaml.engine.v2.api with type arguments of type Tag Constructor Description DumpSettings(boolean explicitStart, boolean explicitEnd, java.util.Optional<Tag> explicitRootTag, AnchorGenerator anchorGenerator, java.util.Optional<SpecVersion> yamlDirective, java.util.Map<java.lang.String,java.lang.String> tagDirective, FlowStyle defaultFlowStyle, ScalarStyle defaultScalarStyle, NonPrintableStyle nonPrintableStyle, Schema schema, boolean canonical, boolean multiLineFlow, boolean useUnicodeEncoding, int indent, int indicatorIndent, int width, java.lang.String bestLineBreak, boolean splitLines, int maxSimpleKeyLength, java.util.Map<SettingKey,java.lang.Object> customProperties, boolean indentWithIndicator, boolean dumpComments)LoadSettings(java.lang.String label, java.util.Map<Tag,ConstructNode> tagConstructors, java.util.function.IntFunction<java.util.List<java.lang.Object>> defaultList, java.util.function.IntFunction<java.util.Set<java.lang.Object>> defaultSet, java.util.function.IntFunction<java.util.Map<java.lang.Object,java.lang.Object>> defaultMap, java.util.function.UnaryOperator<SpecVersion> versionFunction, java.lang.Integer bufferSize, boolean allowDuplicateKeys, boolean allowRecursiveKeys, int maxAliasesForCollections, boolean useMarks, java.util.Map<SettingKey,java.lang.Object> customProperties, java.util.Optional<EnvConfig> envConfig, boolean parseComments, int codePointLimit, Schema schema) -
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 java.util.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. STRprivate TagNode. tagMethods 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, java.util.Optional<Mark> startMark, java.util.Optional<Mark> endMark)MappingNode(Tag tag, boolean resolved, java.util.List<NodeTuple> value, FlowStyle flowStyle, java.util.Optional<Mark> startMark, java.util.Optional<Mark> endMark)CreateMappingNode(Tag tag, java.util.List<NodeTuple> value, FlowStyle flowStyle)CreateNode(Tag tag, java.util.Optional<Mark> startMark, java.util.Optional<Mark> endMark)Create Node to be parsedScalarNode(Tag tag, boolean resolved, java.lang.String value, ScalarStyle style, java.util.Optional<Mark> startMark, java.util.Optional<Mark> endMark)ScalarNode(Tag tag, java.lang.String value, ScalarStyle style)SequenceNode(Tag tag, boolean resolved, java.util.List<Node> value, FlowStyle flowStyle, java.util.Optional<Mark> startMark, java.util.Optional<Mark> endMark)SequenceNode(Tag tag, java.util.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 java.util.Map<java.lang.Class<? extends java.lang.Object>,Tag>StandardRepresenter. classTagsConnect classes to their tagsMethods in org.snakeyaml.engine.v2.representer that return Tag Modifier and Type Method Description TagStandardRepresenter. addClassTag(java.lang.Class<? extends java.lang.Object> clazz, Tag tag)Deprecated.should be replaced with the Beans projectprotected TagStandardRepresenter. getTag(java.lang.Class<?> clazz, Tag defaultTag)Define the way to get the Tag for any classMethods in org.snakeyaml.engine.v2.representer with parameters of type Tag Modifier and Type Method Description TagStandardRepresenter. addClassTag(java.lang.Class<? extends java.lang.Object> clazz, Tag tag)Deprecated.should be replaced with the Beans projectprotected TagStandardRepresenter. getTag(java.lang.Class<?> clazz, Tag defaultTag)Define the way to get the Tag for any classprotected NodeBaseRepresenter. representMapping(Tag tag, java.util.Map<?,?> mapping, FlowStyle flowStyle)Create Node for the provided Mapprotected NodeBaseRepresenter. representScalar(Tag tag, java.lang.String value)Create Node for string using PLAIN scalar style if possibleprotected NodeBaseRepresenter. representScalar(Tag tag, java.lang.String value, ScalarStyle style)Create Scalar Node from stringprotected NodeBaseRepresenter. representSequence(Tag tag, java.lang.Iterable<?> sequence, FlowStyle flowStyle)Create Node -
Uses of Tag in org.snakeyaml.engine.v2.resolver
Fields in org.snakeyaml.engine.v2.resolver declared as Tag Modifier and Type Field Description private TagResolverTuple. tagMethods in org.snakeyaml.engine.v2.resolver that return Tag Modifier and Type Method Description TagResolverTuple. getTag()TagBaseScalarResolver. resolve(java.lang.String value, java.lang.Boolean implicit)TagScalarResolver. resolve(java.lang.String value, java.lang.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 voidBaseScalarResolver. addImplicitResolver(Tag tag, java.util.regex.Pattern regexp, java.lang.String first)Add a resolver to resolve a value that matches the provided regular expression to the provided tagConstructors in org.snakeyaml.engine.v2.resolver with parameters of type Tag Constructor Description ResolverTuple(Tag tag, java.util.regex.Pattern regexp) -
Uses of Tag in org.snakeyaml.engine.v2.schema
Fields in org.snakeyaml.engine.v2.schema with type parameters of type Tag Modifier and Type Field Description private java.util.Map<Tag,ConstructNode>CoreSchema. tagConstructorsprivate java.util.Map<Tag,ConstructNode>JsonSchema. tagConstructorsMethods in org.snakeyaml.engine.v2.schema that return types with arguments of type Tag Modifier and Type Method Description java.util.Map<Tag,ConstructNode>CoreSchema. getSchemaTagConstructors()Provide constructs to support the schema (bool, int, float)java.util.Map<Tag,ConstructNode>FailsafeSchema. getSchemaTagConstructors()No constructs providedjava.util.Map<Tag,ConstructNode>JsonSchema. getSchemaTagConstructors()Basic constructsjava.util.Map<Tag,ConstructNode>Schema. getSchemaTagConstructors()Provide the way to construct the resolved tag.
-