Uses of Class
com.fasterxml.jackson.dataformat.cbor.CBORParser.TagList
-
Packages that use CBORParser.TagList Package Description com.fasterxml.jackson.dataformat.cbor -
-
Uses of CBORParser.TagList in com.fasterxml.jackson.dataformat.cbor
Fields in com.fasterxml.jackson.dataformat.cbor declared as CBORParser.TagList Modifier and Type Field Description protected CBORParser.TagList
CBORParser. _tagValues
We will keep track of tag values for possible future use.Methods in com.fasterxml.jackson.dataformat.cbor that return CBORParser.TagList Modifier and Type Method Description CBORParser.TagList
CBORParser. getCurrentTags()
Method that can be used to access all tag ids associated with the most recently decoded value (whether completely, for scalar values, or partially, for Objects/Arrays), if any.Methods in com.fasterxml.jackson.dataformat.cbor with parameters of type CBORParser.TagList Modifier and Type Method Description protected void
CBORParser. _decodeNonStringName(int ch, CBORParser.TagList tags)
Method that handles initial token type recognition for token that has to be either FIELD_NAME or END_OBJECT.protected com.fasterxml.jackson.core.JsonToken
CBORParser. _handleTaggedArray(CBORParser.TagList tags, int len)
protected com.fasterxml.jackson.core.JsonToken
CBORParser. _handleTaggedBinary(CBORParser.TagList tags)
protected com.fasterxml.jackson.core.JsonToken
CBORParser. _handleTaggedInt(CBORParser.TagList tags)
protected java.lang.String
CBORParser. _numberToName(int ch, boolean neg, CBORParser.TagList tags)
-