Uses of Class
com.fasterxml.jackson.core.JsonToken
-
Packages that use JsonToken Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonGenerator) instances.com.fasterxml.jackson.core.base Base classes used by concrete Parser and Generator implementations; contain functionality that is not specific to JSON or input abstraction (byte vs char).com.fasterxml.jackson.core.exc Package for some ofJsonProcessingExceptionsubtypes contained by streaming API.com.fasterxml.jackson.core.filter com.fasterxml.jackson.core.io com.fasterxml.jackson.core.json JSON-specific parser and generator implementation classes that Jackson defines and uses.com.fasterxml.jackson.core.json.async Non-blocking ("async") JSON parser implementation.com.fasterxml.jackson.core.type Contains classes needed for type introspection, mostly used by data binding functionality.com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality.com.fasterxml.jackson.databind Basic data binding (mapping) functionality that allows for reading JSON content into Java Objects (POJOs) and JSON Trees (JsonNode), as well as writing Java Objects and trees as JSON.com.fasterxml.jackson.databind.deser Contains implementation classes of deserialization part of data binding.com.fasterxml.jackson.databind.deser.std Contains public standard implementations of abstraction that Jackson uses.com.fasterxml.jackson.databind.jsontype Package that contains interfaces that define how to implement functionality for dynamically resolving type during deserialization.com.fasterxml.jackson.databind.node Contains concreteJsonNodeimplementations Jackson uses for the Tree model.com.fasterxml.jackson.databind.ser.std com.fasterxml.jackson.databind.util Utility classes for Mapper package.com.fasterxml.jackson.datatype.jsr310.ser -
-
Uses of JsonToken in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return JsonToken Modifier and Type Method Description JsonTokenTreeNode. asToken()Method that can be used for efficient type detection when using stream abstraction for traversing nodes.JsonTokenJsonParser. currentToken()Accessor to find which token parser currently points to, if any; null will be returned if none.abstract JsonTokenJsonParser. getCurrentToken()Alias forJsonParser.currentToken(), may be deprecated sometime after Jackson 2.13 (will be removed from 3.0).abstract JsonTokenJsonParser. getLastClearedToken()Method that can be called to get the last token that was cleared usingJsonParser.clearCurrentToken().abstract JsonTokenJsonParser. nextToken()Main iteration method, which will advance stream enough to determine type of the next token, if any.abstract JsonTokenJsonParser. nextValue()Iteration method that will advance stream enough to determine type of the next token that is a value type (including JSON Array and Object start/end markers).static JsonTokenJsonToken. valueOf(String name)Returns the enum constant of this type with the specified name.static JsonToken[]JsonToken. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.fasterxml.jackson.core with parameters of type JsonToken Modifier and Type Method Description abstract booleanJsonParser. hasToken(JsonToken t)Method that is functionally equivalent to:return currentToken() == tbut may be more efficiently implemented. -
Uses of JsonToken in com.fasterxml.jackson.core.base
Fields in com.fasterxml.jackson.core.base declared as JsonToken Modifier and Type Field Description protected JsonTokenParserMinimalBase. _currTokenLast token retrieved viaParserMinimalBase.nextToken(), if any.protected JsonTokenParserMinimalBase. _lastClearedTokenLast cleared token, if any: that is, value that was in effect whenParserMinimalBase.clearCurrentToken()was called.protected JsonTokenParserBase. _nextTokenSecondary token related to the next token after current one; used if its type is known.Methods in com.fasterxml.jackson.core.base that return JsonToken Modifier and Type Method Description JsonTokenParserMinimalBase. currentToken()JsonTokenParserMinimalBase. getCurrentToken()JsonTokenParserMinimalBase. getLastClearedToken()abstract JsonTokenParserMinimalBase. nextToken()JsonTokenParserMinimalBase. nextValue()protected JsonTokenParserBase. reset(boolean negative, int intLen, int fractLen, int expLen)protected JsonTokenParserBase. resetAsNaN(String valueStr, double value)protected JsonTokenParserBase. resetFloat(boolean negative, int intLen, int fractLen, int expLen)protected JsonTokenParserBase. resetInt(boolean negative, int intLen)Methods in com.fasterxml.jackson.core.base with parameters of type JsonToken Modifier and Type Method Description protected voidParserMinimalBase. _reportInputCoercion(String msg, JsonToken inputType, Class<?> targetType)protected voidParserMinimalBase. _reportInvalidEOF(String msg, JsonToken currToken)protected voidParserMinimalBase. _reportInvalidEOFInValue(JsonToken type)booleanParserMinimalBase. hasToken(JsonToken t)protected voidParserMinimalBase. reportOverflowInt(String numDesc, JsonToken inputType)protected voidParserMinimalBase. reportOverflowLong(String numDesc, JsonToken inputType) -
Uses of JsonToken in com.fasterxml.jackson.core.exc
Fields in com.fasterxml.jackson.core.exc declared as JsonToken Modifier and Type Field Description protected JsonTokenInputCoercionException. _inputTypeInput token that represents input value that failed to coerce.Methods in com.fasterxml.jackson.core.exc that return JsonToken Modifier and Type Method Description JsonTokenInputCoercionException. getInputType()Accessor for getting information about input type (in form of token, giving "shape" of input) for which coercion failed.Constructors in com.fasterxml.jackson.core.exc with parameters of type JsonToken Constructor Description InputCoercionException(JsonParser p, String msg, JsonToken inputType, Class<?> targetType)Constructor that uses current parsing location as location, and sets processor (accessible viaStreamReadException.getProcessor()) to specified parser. -
Uses of JsonToken in com.fasterxml.jackson.core.filter
Fields in com.fasterxml.jackson.core.filter declared as JsonToken Modifier and Type Field Description protected JsonTokenFilteringParserDelegate. _currTokenLast token retrieved viaFilteringParserDelegate.nextToken(), if any.protected JsonTokenFilteringParserDelegate. _lastClearedTokenLast cleared token, if any: that is, value that was in effect whenFilteringParserDelegate.clearCurrentToken()was called.Methods in com.fasterxml.jackson.core.filter that return JsonToken Modifier and Type Method Description protected JsonTokenFilteringParserDelegate. _nextToken2()protected JsonTokenFilteringParserDelegate. _nextTokenWithBuffering(TokenFilterContext buffRoot)JsonTokenFilteringParserDelegate. currentToken()JsonTokenFilteringParserDelegate. getCurrentToken()JsonTokenFilteringParserDelegate. getLastClearedToken()JsonTokenFilteringParserDelegate. nextToken()JsonTokenTokenFilterContext. nextTokenToRead()JsonTokenFilteringParserDelegate. nextValue()Methods in com.fasterxml.jackson.core.filter with parameters of type JsonToken Modifier and Type Method Description booleanFilteringParserDelegate. hasToken(JsonToken t) -
Uses of JsonToken in com.fasterxml.jackson.core.io
Fields in com.fasterxml.jackson.core.io declared as JsonToken Modifier and Type Field Description protected JsonTokenJsonEOFException. _tokenType of token that was being decoded, if parser had enough information to recognize type (such as starting double-quote for Strings)Methods in com.fasterxml.jackson.core.io that return JsonToken Modifier and Type Method Description JsonTokenJsonEOFException. getTokenBeingDecoded()Accessor for possibly available information about token that was being decoded while encountering end of input.Constructors in com.fasterxml.jackson.core.io with parameters of type JsonToken Constructor Description JsonEOFException(JsonParser p, JsonToken token, String msg) -
Uses of JsonToken in com.fasterxml.jackson.core.json
Methods in com.fasterxml.jackson.core.json that return JsonToken Modifier and Type Method Description protected JsonTokenReaderBasedJsonParser. _handleApos()protected JsonTokenUTF8DataInputJsonParser. _handleApos()protected JsonTokenUTF8StreamJsonParser. _handleApos()protected JsonTokenReaderBasedJsonParser. _handleInvalidNumberStart(int ch, boolean negative)protected JsonTokenReaderBasedJsonParser. _handleInvalidNumberStart(int ch, boolean negative, boolean hasSign)protected JsonTokenUTF8DataInputJsonParser. _handleInvalidNumberStart(int ch, boolean neg)protected JsonTokenUTF8DataInputJsonParser. _handleInvalidNumberStart(int ch, boolean neg, boolean hasSign)protected JsonTokenUTF8StreamJsonParser. _handleInvalidNumberStart(int ch, boolean neg)protected JsonTokenUTF8StreamJsonParser. _handleInvalidNumberStart(int ch, boolean neg, boolean hasSign)protected JsonTokenReaderBasedJsonParser. _handleOddValue(int i)Method for handling cases where first non-space character of an expected value token is not legal for standard JSON content.protected JsonTokenUTF8DataInputJsonParser. _handleUnexpectedValue(int c)Method for handling cases where first non-space character of an expected value token is not legal for standard JSON content.protected JsonTokenUTF8StreamJsonParser. _handleUnexpectedValue(int c)Method for handling cases where first non-space character of an expected value token is not legal for standard JSON content.protected JsonTokenReaderBasedJsonParser. _parseFloatThatStartsWithPeriod()Deprecated.protected JsonTokenReaderBasedJsonParser. _parseFloatThatStartsWithPeriod(boolean neg)protected JsonTokenUTF8DataInputJsonParser. _parseFloatThatStartsWithPeriod()Deprecated.protected JsonTokenUTF8DataInputJsonParser. _parseFloatThatStartsWithPeriod(boolean neg, boolean hasSign)protected JsonTokenUTF8StreamJsonParser. _parseFloatThatStartsWithPeriod()Deprecated.protected JsonTokenUTF8StreamJsonParser. _parseFloatThatStartsWithPeriod(boolean neg, boolean hasSign)protected JsonTokenUTF8DataInputJsonParser. _parseNegNumber()protected JsonTokenUTF8DataInputJsonParser. _parsePosNumber()protected JsonTokenReaderBasedJsonParser. _parseUnsignedNumber(int ch)Initial parsing method for number values.protected JsonTokenUTF8DataInputJsonParser. _parseUnsignedNumber(int c)Initial parsing method for number values.protected JsonTokenUTF8StreamJsonParser. _parseUnsignedNumber(int c)Initial parsing method for number values.JsonTokenReaderBasedJsonParser. nextToken()JsonTokenUTF8DataInputJsonParser. nextToken()JsonTokenUTF8StreamJsonParser. nextToken()Methods in com.fasterxml.jackson.core.json with parameters of type JsonToken Modifier and Type Method Description protected StringReaderBasedJsonParser. _getText2(JsonToken t)protected StringUTF8DataInputJsonParser. _getText2(JsonToken t)protected StringUTF8StreamJsonParser. _getText2(JsonToken t)protected charReaderBasedJsonParser. getNextChar(String eofMsg, JsonToken forToken) -
Uses of JsonToken in com.fasterxml.jackson.core.json.async
Methods in com.fasterxml.jackson.core.json.async that return JsonToken Modifier and Type Method Description protected JsonTokenNonBlockingJsonParserBase. _closeArrayScope()protected JsonTokenNonBlockingJsonParserBase. _closeObjectScope()protected JsonTokenNonBlockingJsonParserBase. _eofAsNextToken()protected JsonTokenNonBlockingJsonParserBase. _fieldComplete(String name)protected JsonTokenNonBlockingUtf8JsonParserBase. _finishErrorToken()protected JsonTokenNonBlockingUtf8JsonParserBase. _finishErrorTokenWithEOF()protected JsonTokenNonBlockingUtf8JsonParserBase. _finishFieldWithEscape()protected JsonTokenNonBlockingUtf8JsonParserBase. _finishFloatExponent(boolean checkSign, int ch)protected JsonTokenNonBlockingUtf8JsonParserBase. _finishFloatFraction()protected JsonTokenNonBlockingUtf8JsonParserBase. _finishKeywordToken(String expToken, int matched, JsonToken result)protected JsonTokenNonBlockingUtf8JsonParserBase. _finishKeywordTokenWithEOF(String expToken, int matched, JsonToken result)protected JsonTokenNonBlockingUtf8JsonParserBase. _finishNonStdToken(int type, int matched)protected JsonTokenNonBlockingUtf8JsonParserBase. _finishNonStdTokenWithEOF(int type, int matched)protected JsonTokenNonBlockingUtf8JsonParserBase. _finishNumberIntegralPart(char[] outBuf, int outPtr)protected JsonTokenNonBlockingUtf8JsonParserBase. _finishNumberLeadingNegZeroes()protected JsonTokenNonBlockingUtf8JsonParserBase. _finishNumberLeadingPosNegZeroes(boolean negative)protected JsonTokenNonBlockingUtf8JsonParserBase. _finishNumberLeadingPosZeroes()protected JsonTokenNonBlockingUtf8JsonParserBase. _finishNumberLeadingZeroes()protected JsonTokenNonBlockingUtf8JsonParserBase. _finishNumberMinus(int ch)protected JsonTokenNonBlockingUtf8JsonParserBase. _finishNumberPlus(int ch)protected JsonTokenNonBlockingUtf8JsonParserBase. _finishNumberPlusMinus(int ch, boolean negative)protected JsonTokenNonBlockingUtf8JsonParserBase. _finishToken()Method called when decoding of a token has been started, but not yet completed due to missing input; method is to continue decoding due to at least one more byte being made available to decode.protected JsonTokenNonBlockingUtf8JsonParserBase. _finishTokenWithEOF()Method similar toNonBlockingUtf8JsonParserBase._finishToken(), but called when no more input is available, and end-of-input has been detected.protected JsonTokenNonBlockingUtf8JsonParserBase. _reportErrorToken(String actualToken)protected JsonTokenNonBlockingUtf8JsonParserBase. _startAposString()protected JsonTokenNonBlockingJsonParserBase. _startArrayScope()protected JsonTokenNonBlockingUtf8JsonParserBase. _startFalseToken()protected JsonTokenNonBlockingUtf8JsonParserBase. _startFloat(char[] outBuf, int outPtr, int ch)protected JsonTokenNonBlockingUtf8JsonParserBase. _startFloatThatStartsWithPeriod()protected JsonTokenNonBlockingUtf8JsonParserBase. _startNegativeNumber()protected JsonTokenNonBlockingUtf8JsonParserBase. _startNullToken()protected JsonTokenNonBlockingUtf8JsonParserBase. _startNumberLeadingZero()protected JsonTokenNonBlockingJsonParserBase. _startObjectScope()protected JsonTokenNonBlockingUtf8JsonParserBase. _startPositiveNumber()protected JsonTokenNonBlockingUtf8JsonParserBase. _startPositiveNumber(int ch)protected JsonTokenNonBlockingUtf8JsonParserBase. _startString()protected JsonTokenNonBlockingUtf8JsonParserBase. _startTrueToken()protected JsonTokenNonBlockingUtf8JsonParserBase. _startUnexpectedValue(boolean leadingComma, int ch)protected JsonTokenNonBlockingJsonParserBase. _valueComplete(JsonToken t)protected JsonTokenNonBlockingJsonParserBase. _valueCompleteInt(int value, String asText)protected JsonTokenNonBlockingJsonParserBase. _valueNonStdNumberComplete(int type)JsonTokenNonBlockingUtf8JsonParserBase. nextToken()Methods in com.fasterxml.jackson.core.json.async with parameters of type JsonToken Modifier and Type Method Description protected JsonTokenNonBlockingUtf8JsonParserBase. _finishKeywordToken(String expToken, int matched, JsonToken result)protected JsonTokenNonBlockingUtf8JsonParserBase. _finishKeywordTokenWithEOF(String expToken, int matched, JsonToken result)protected StringNonBlockingJsonParserBase. _getText2(JsonToken t)protected JsonTokenNonBlockingJsonParserBase. _valueComplete(JsonToken t) -
Uses of JsonToken in com.fasterxml.jackson.core.type
Fields in com.fasterxml.jackson.core.type declared as JsonToken Modifier and Type Field Description JsonTokenWritableTypeId. valueShapeInformation about intended shape of the value being written (that is,WritableTypeId.forValue); in case of structured values, start token of the structure; for scalars, value token.Constructors in com.fasterxml.jackson.core.type with parameters of type JsonToken Constructor Description WritableTypeId(Object value, JsonToken valueShape)Constructor used when calling a method for generating and writing Type Id; caller only knows value object and its intended shape.WritableTypeId(Object value, JsonToken valueShape, Object id)Constructor used when calling a method for writing Type Id; caller knows value object, its intended shape as well as id to use; but not details of wrapping (if any).WritableTypeId(Object value, Class<?> valueType, JsonToken valueShape)Constructor used when calling a method for generating and writing Type Id, but where actual type to use for generating id is NOT the type of value (but its supertype). -
Uses of JsonToken in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that return JsonToken Modifier and Type Method Description JsonTokenJsonParserDelegate. currentToken()JsonTokenJsonParserDelegate. getCurrentToken()JsonTokenJsonParserDelegate. getLastClearedToken()JsonTokenJsonParserDelegate. nextToken()JsonTokenJsonParserSequence. nextToken()JsonTokenJsonParserDelegate. nextValue()protected JsonTokenJsonParserSequence. switchAndReturnNext()Methods in com.fasterxml.jackson.core.util with parameters of type JsonToken Modifier and Type Method Description booleanJsonParserDelegate. hasToken(JsonToken t) -
Uses of JsonToken in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return JsonToken Modifier and Type Method Description protected JsonTokenObjectMapper. _initForReading(JsonParser p, JavaType targetType)Method called to ensure that given parser is ready for reading content for data binding.protected JsonTokenObjectReader. _initForReading(DeserializationContext ctxt, JsonParser p)Methods in com.fasterxml.jackson.databind with parameters of type JsonToken Modifier and Type Method Description protected StringDeserializationContext. _shapeForToken(JsonToken t)Helper method for constructing description like "Object value" givenJsonTokenencountered.ObjectDeserializationContext. handleUnexpectedToken(JavaType targetType, JsonToken t, JsonParser p, String msg, Object... msgArgs)Method that deserializers should call if the first token of the value to deserialize is of unexpected type (that is, type of token that deserializer cannot handle).ObjectDeserializationContext. handleUnexpectedToken(Class<?> instClass, JsonToken t, JsonParser p, String msg, Object... msgArgs)Method that deserializers should call if the first token of the value to deserialize is of unexpected type (that is, type of token that deserializer cannot handle).JsonMappingExceptionDeserializationContext. mappingException(Class<?> targetClass, JsonToken token)Deprecated.Since 2.8 useDeserializationContext.handleUnexpectedToken(Class, JsonParser)instead<T> TDeserializationContext. reportTrailingTokens(Class<?> targetType, JsonParser p, JsonToken trailingToken)voidDeserializationContext. reportWrongTokenException(JsonParser p, JsonToken expToken, String msg, Object... msgArgs)Deprecated.voidDeserializationContext. reportWrongTokenException(JavaType targetType, JsonToken expToken, String msg, Object... msgArgs)Method for deserializers to call when the token encountered was of type different than what should be seen at that position, usually within a sequence of expected tokens.voidDeserializationContext. reportWrongTokenException(JsonDeserializer<?> deser, JsonToken expToken, String msg, Object... msgArgs)Method for deserializers to call when the token encountered was of type different than what should be seen at that position, usually within a sequence of expected tokens.voidDeserializationContext. reportWrongTokenException(Class<?> targetType, JsonToken expToken, String msg, Object... msgArgs)Method for deserializers to call when the token encountered was of type different than what should be seen at that position, usually within a sequence of expected tokens.JsonMappingExceptionDeserializationContext. wrongTokenException(JsonParser p, JsonToken expToken, String msg)Deprecated.JsonMappingExceptionDeserializationContext. wrongTokenException(JsonParser p, JavaType targetType, JsonToken expToken, String extra)Helper method for constructingJsonMappingExceptionto indicate that the token encountered was of type different than what should be seen at that position, usually within a sequence of expected tokens.JsonMappingExceptionDeserializationContext. wrongTokenException(JsonParser p, Class<?> targetType, JsonToken expToken, String extra) -
Uses of JsonToken in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser with parameters of type JsonToken Modifier and Type Method Description protected ObjectBeanDeserializer. _deserializeOther(JsonParser p, DeserializationContext ctxt, JsonToken t)ObjectDeserializationProblemHandler. handleUnexpectedToken(DeserializationContext ctxt, JavaType targetType, JsonToken t, JsonParser p, String failureMsg)Method that deserializers should call if the first token of the value to deserialize is of unexpected type (that is, type of token that deserializer cannot handle).ObjectDeserializationProblemHandler. handleUnexpectedToken(DeserializationContext ctxt, Class<?> targetType, JsonToken t, JsonParser p, String failureMsg)Deprecated.Since 2.10 -
Uses of JsonToken in com.fasterxml.jackson.databind.deser.std
Methods in com.fasterxml.jackson.databind.deser.std with parameters of type JsonToken Modifier and Type Method Description protected ObjectFromStringDeserializer. _deserializeFromOther(JsonParser p, DeserializationContext ctxt, JsonToken t) -
Uses of JsonToken in com.fasterxml.jackson.databind.jsontype
Methods in com.fasterxml.jackson.databind.jsontype with parameters of type JsonToken Modifier and Type Method Description WritableTypeIdTypeSerializer. typeId(Object value, JsonToken valueShape)Factory method for constructing type id value object to pass toTypeSerializer.writeTypePrefix(com.fasterxml.jackson.core.JsonGenerator, com.fasterxml.jackson.core.type.WritableTypeId).WritableTypeIdTypeSerializer. typeId(Object value, JsonToken valueShape, Object id)WritableTypeIdTypeSerializer. typeId(Object value, Class<?> typeForId, JsonToken valueShape) -
Uses of JsonToken in com.fasterxml.jackson.databind.node
Methods in com.fasterxml.jackson.databind.node that return JsonToken Modifier and Type Method Description JsonTokenArrayNode. asToken()abstract JsonTokenBaseJsonNode. asToken()Method that can be used for efficient type detection when using stream abstraction for traversing nodes.JsonTokenBigIntegerNode. asToken()JsonTokenBinaryNode. asToken()JsonTokenBooleanNode. asToken()abstract JsonTokenContainerNode. asToken()JsonTokenDecimalNode. asToken()JsonTokenDoubleNode. asToken()JsonTokenFloatNode. asToken()JsonTokenIntNode. asToken()JsonTokenLongNode. asToken()JsonTokenMissingNode. asToken()JsonTokenNullNode. asToken()JsonTokenObjectNode. asToken()JsonTokenPOJONode. asToken()JsonTokenShortNode. asToken()JsonTokenTextNode. asToken()abstract JsonTokenValueNode. asToken()JsonTokenTreeTraversingParser. nextToken() -
Uses of JsonToken in com.fasterxml.jackson.databind.ser.std
Methods in com.fasterxml.jackson.databind.ser.std with parameters of type JsonToken Modifier and Type Method Description protected WritableTypeIdBeanSerializerBase. _typeIdDef(TypeSerializer typeSer, Object bean, JsonToken valueShape) -
Uses of JsonToken in com.fasterxml.jackson.databind.util
Methods in com.fasterxml.jackson.databind.util that return JsonToken Modifier and Type Method Description JsonTokenTokenBuffer. firstToken()JsonTokenTokenBuffer.Parser. nextToken()JsonTokenTokenBuffer.Parser. peekNextToken()JsonTokenTokenBuffer.Segment. type(int index)Methods in com.fasterxml.jackson.databind.util with parameters of type JsonToken Modifier and Type Method Description protected voidTokenBuffer. _appendEndMarker(JsonToken type)Specialized method used for appending a structural end Object/Array markerprotected voidTokenBuffer. _appendStartMarker(JsonToken type)Specialized method used for appending a structural start Object/Array markerprotected voidTokenBuffer. _appendValue(JsonToken type)Method used for appending token known to represent a "simple" scalar value where token is the only informationprotected voidTokenBuffer. _appendValue(JsonToken type, Object value)Method used for appending token known to represent a scalar value where there is additional content (text, number) beyond type tokenTokenBuffer.SegmentTokenBuffer.Segment. append(int index, JsonToken tokenType)TokenBuffer.SegmentTokenBuffer.Segment. append(int index, JsonToken tokenType, Object value)TokenBuffer.SegmentTokenBuffer.Segment. append(int index, JsonToken tokenType, Object objectId, Object typeId)TokenBuffer.SegmentTokenBuffer.Segment. append(int index, JsonToken tokenType, Object value, Object objectId, Object typeId) -
Uses of JsonToken in com.fasterxml.jackson.datatype.jsr310.ser
Methods in com.fasterxml.jackson.datatype.jsr310.ser that return JsonToken Modifier and Type Method Description protected JsonTokenDurationSerializer. serializationShape(SerializerProvider provider)protected JsonTokenInstantSerializerBase. serializationShape(SerializerProvider provider)protected JsonTokenLocalDateSerializer. serializationShape(SerializerProvider provider)protected JsonTokenLocalDateTimeSerializer. serializationShape(SerializerProvider provider)protected JsonTokenLocalTimeSerializer. serializationShape(SerializerProvider provider)protected JsonTokenMonthDaySerializer. serializationShape(SerializerProvider provider)protected JsonTokenOffsetTimeSerializer. serializationShape(SerializerProvider provider)protected JsonTokenYearMonthSerializer. serializationShape(SerializerProvider provider)protected JsonTokenYearSerializer. serializationShape(SerializerProvider provider)protected JsonTokenZonedDateTimeSerializer. serializationShape(SerializerProvider provider)
-