- cachedDeserializersCount() - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- cachedDeserializersCount() - Method in class org.codehaus.jackson.map.DeserializerProvider
-
Method that can be used to determine how many deserializers this
provider is caching currently
(if it does caching: default implementation does)
Exact count depends on what kind of deserializers get cached;
default implementation caches only dynamically constructed deserializers,
but not eagerly constructed standard deserializers (which is different
from how serializer provider works).
- cachedSerializersCount() - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- cachedSerializersCount() - Method in class org.codehaus.jackson.map.SerializerProvider
-
Method that can be used to determine how many serializers this
provider is caching currently
(if it does caching: default implementation does)
Exact count depends on what kind of serializers get cached;
default implementation caches all serializers, including ones that
are eagerly constructed (for optimal access speed)
- calcHash(int) - Method in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
- calcHash(int, int) - Method in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
- calcHash(int[], int) - Method in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
- calcHash(char[], int, int) - Method in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Implementation of a hashing method for variable length
Strings.
- calcHash(String) - Method in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
- calcQuads(byte[]) - Static method in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
- CalendarDeserializer - Class in org.codehaus.jackson.map.deser.std
-
- CalendarDeserializer() - Constructor for class org.codehaus.jackson.map.deser.std.CalendarDeserializer
-
- CalendarDeserializer(Class<? extends Calendar>) - Constructor for class org.codehaus.jackson.map.deser.std.CalendarDeserializer
-
- CalendarSerializer - Class in org.codehaus.jackson.map.ser.std
-
- CalendarSerializer() - Constructor for class org.codehaus.jackson.map.ser.std.CalendarSerializer
-
- call() - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- call(Object[]) - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- call() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- call(Object[]) - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- call() - Method in class org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
Method that can be used to (try to) call this object without arguments.
- call(Object[]) - Method in class org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
Method that can be used to (try to) call this object with specified arguments.
- call1(Object) - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- call1(Object) - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- call1(Object) - Method in class org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
Method that can be used to (try to) call this object with single arguments.
- CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES - Static variable in class org.codehaus.jackson.map.PropertyNamingStrategy
-
- canBeABeanType(Class<?>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
- canCreateFromBoolean() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- canCreateFromBoolean() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
- canCreateFromDouble() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- canCreateFromDouble() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
- canCreateFromInt() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- canCreateFromInt() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
- canCreateFromLong() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- canCreateFromLong() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
- canCreateFromObjectWith() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- canCreateFromObjectWith() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method that can be called to check whether a property-based creator
(argument-taking constructor or factory method)
is available to instantiate values from JSON Object
- canCreateFromString() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- canCreateFromString() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method that can be called to check whether a String-based creator
is available for this instantiator
- canCreateUsingDefault() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- canCreateUsingDefault() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method that can be called to check whether a default creator (constructor,
or no-arg static factory method)
is available for this instantiator
- canCreateUsingDelegate() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method that can be called to check whether a delegate-based creator (single-arg
constructor or factory method)
is available for this instantiator
- canDeserialize(JavaType) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that can be called to check whether mapper thinks
it could deserialize an Object of given type.
- canInstantiate() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method that will return true if any of canCreateXxx
method
returns true: that is, if there is any way that an instance could
be created.
- canOverrideAccessModifiers() - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- canOverrideAccessModifiers() - Method in class org.codehaus.jackson.map.MapperConfig
-
Accessor for determining whether it is ok to try to force override of access
modifiers to be able to get or set values of non-public Methods, Fields;
to invoke non-public Constructors, Methods; or to instantiate non-public
Classes.
- canOverrideAccessModifiers() - Method in class org.codehaus.jackson.map.SerializationConfig
-
- canSerialize(Class<?>) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that can be called to check whether mapper thinks
it could serialize an instance of given Class.
- canSerialize(Class<?>) - Method in class org.codehaus.jackson.map.ObjectWriter
-
- canUseSchema(FormatSchema) - Method in class org.codehaus.jackson.JsonGenerator
-
- canUseSchema(FormatSchema) - Method in class org.codehaus.jackson.JsonParser
-
- canUseSchema(FormatSchema) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- canUseSchema(FormatSchema) - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- changeProperties(SerializationConfig, BasicBeanDescription, List<BeanPropertyWriter>) - Method in class org.codehaus.jackson.map.ser.BeanSerializerModifier
-
- CHAR_NULL - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- CharacterEscapes - Class in org.codehaus.jackson.io
-
Abstract base class that defines interface for customizing character
escaping aspects for String values, for formats that use escaping.
- CharacterEscapes() - Constructor for class org.codehaus.jackson.io.CharacterEscapes
-
- charLength() - Method in class org.codehaus.jackson.io.SerializedString
-
Returns length of the String as characters
- charLength() - Method in interface org.codehaus.jackson.SerializableString
-
Returns length of the (unquoted) String as characters.
- CharsToNameCanonicalizer - Class in org.codehaus.jackson.sym
-
This class is a kind of specialized type-safe Map, from char array to
String value.
- charToHex(int) - Static method in class org.codehaus.jackson.util.CharTypes
-
- CharTypes - Class in org.codehaus.jackson.util
-
- CharTypes() - Constructor for class org.codehaus.jackson.util.CharTypes
-
- checkAndFixAccess(Member) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Method called to check if we can use the passed method or constructor
(wrt access restriction -- public methods can be called, others
usually not); and if not, if there is a work-around for
the problem.
- checkCanDeserialize(boolean) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
- checkCanSerialize(boolean) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
- childInstance() - Method in class org.codehaus.jackson.map.type.TypeBindings
-
Constructor used to create "child" instances; mostly to
allow delegation from explicitly defined local overrides
(local type variables for methods, constructors) to
contextual (class-defined) ones.
- ClassDeserializer - Class in org.codehaus.jackson.map.deser.std
-
- ClassDeserializer() - Constructor for class org.codehaus.jackson.map.deser.std.ClassDeserializer
-
- ClassIntrospector<T extends BeanDescription> - Class in org.codehaus.jackson.map
-
Helper class used to introspect features of POJO value classes
used with Jackson.
- ClassIntrospector() - Constructor for class org.codehaus.jackson.map.ClassIntrospector
-
- ClassIntrospector.MixInResolver - Interface in org.codehaus.jackson.map
-
Interface used for decoupling details of how mix-in annotation
definitions are accessed (via this interface), and how
they are stored (defined by classes that implement the interface)
- ClassKey - Class in org.codehaus.jackson.map.type
-
Key class, used as an efficient and accurate key
for locating per-class values, such as
JsonSerializer
s.
- ClassKey() - Constructor for class org.codehaus.jackson.map.type.ClassKey
-
- ClassKey(Class<?>) - Constructor for class org.codehaus.jackson.map.type.ClassKey
-
- ClassNameIdResolver - Class in org.codehaus.jackson.map.jsontype.impl
-
TypeIdResolver
implementation
that converts between fully-qualified
Java class names and (JSON) Strings.
- ClassNameIdResolver(JavaType, TypeFactory) - Constructor for class org.codehaus.jackson.map.jsontype.impl.ClassNameIdResolver
-
- ClassUtil - Class in org.codehaus.jackson.map.util
-
- ClassUtil() - Constructor for class org.codehaus.jackson.map.util.ClassUtil
-
- classWithCreators(MapperConfig<?>, JavaType, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
- clearCurrentToken() - Method in class org.codehaus.jackson.JsonParser
-
- clearCurrentToken() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- clearHandlers() - Method in class org.codehaus.jackson.map.DeserializationConfig
-
Method for removing all configured problem handlers; usually done to replace
existing handler(s) with different one(s)
- clone() - Method in class org.codehaus.jackson.map.util.ISO8601DateFormat
-
- clone() - Method in class org.codehaus.jackson.map.util.StdDateFormat
-
- close() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- close() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- close() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- close() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- close() - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- close() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- close() - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- close() - Method in class org.codehaus.jackson.io.MergedStream
-
- close() - Method in class org.codehaus.jackson.io.SegmentedStringWriter
-
- close() - Method in class org.codehaus.jackson.io.UTF8Writer
-
- close() - Method in class org.codehaus.jackson.JsonGenerator
-
Method called to close this generator, so that no more content
can be written.
- close() - Method in class org.codehaus.jackson.JsonParser
-
Closes the parser so that no further iteration or data access
can be made; will also close the underlying input source
if parser either
owns the input source, or feature
JsonParser.Feature.AUTO_CLOSE_SOURCE
is enabled.
- close() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- close() - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- close() - Method in class org.codehaus.jackson.smile.SmileParser
-
- close() - Method in class org.codehaus.jackson.util.ByteArrayBuilder
-
- close() - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- close() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- close() - Method in class org.codehaus.jackson.util.JsonParserSequence
-
- close() - Method in class org.codehaus.jackson.util.TokenBuffer
-
- close() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- collect() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Method that orchestrates collection activities, and needs to be called
after creating the instance.
- collectAndResolveSubtypes(AnnotatedMember, MapperConfig<?>, AnnotationIntrospector) - Method in class org.codehaus.jackson.map.jsontype.impl.StdSubtypeResolver
-
- collectAndResolveSubtypes(AnnotatedClass, MapperConfig<?>, AnnotationIntrospector) - Method in class org.codehaus.jackson.map.jsontype.impl.StdSubtypeResolver
-
- collectAndResolveSubtypes(AnnotatedMember, MapperConfig<?>, AnnotationIntrospector) - Method in class org.codehaus.jackson.map.jsontype.SubtypeResolver
-
Method for finding out all reachable subtypes for a property specified
by given element (method or field)
- collectAndResolveSubtypes(AnnotatedClass, MapperConfig<?>, AnnotationIntrospector) - Method in class org.codehaus.jackson.map.jsontype.SubtypeResolver
-
Method for finding out all reachable subtypes for given type.
- collectDefaults() - Static method in enum org.codehaus.jackson.JsonGenerator.Feature
-
Method that calculates bit set (flags) of all features that
are enabled by default.
- collectDefaults() - Static method in enum org.codehaus.jackson.JsonParser.Feature
-
Method that calculates bit set (flags) of all features that
are enabled by default.
- collectDefaults() - Static method in enum org.codehaus.jackson.mrbean.AbstractTypeMaterializer.Feature
-
- collectDefaults() - Static method in enum org.codehaus.jackson.smile.SmileGenerator.Feature
-
Method that calculates bit set (flags) of all features that
are enabled by default.
- collectDefaults() - Static method in enum org.codehaus.jackson.smile.SmileParser.Feature
-
Method that calculates bit set (flags) of all features that
are enabled by default.
- CollectionDeserializer - Class in org.codehaus.jackson.map.deser
-
- CollectionDeserializer(JavaType, JsonDeserializer<Object>, TypeDeserializer, Constructor<Collection<Object>>) - Constructor for class org.codehaus.jackson.map.deser.CollectionDeserializer
-
Deprecated.
Since 1.9, use variant that takes ValueInstantiator
- CollectionDeserializer(JavaType, JsonDeserializer<Object>, TypeDeserializer, ValueInstantiator) - Constructor for class org.codehaus.jackson.map.deser.CollectionDeserializer
-
Deprecated.
- CollectionDeserializer(CollectionDeserializer) - Constructor for class org.codehaus.jackson.map.deser.CollectionDeserializer
-
Deprecated.
Copy-constructor that can be used by sub-classes to allow
copy-on-write styling copying of settings of an existing instance.
- CollectionDeserializer - Class in org.codehaus.jackson.map.deser.std
-
Basic serializer that can take JSON "Array" structure and
construct a
Collection
instance, with typed contents.
- CollectionDeserializer(JavaType, JsonDeserializer<Object>, TypeDeserializer, Constructor<Collection<Object>>) - Constructor for class org.codehaus.jackson.map.deser.std.CollectionDeserializer
-
Deprecated.
Since 1.9, use variant that takes ValueInstantiator
- CollectionDeserializer(JavaType, JsonDeserializer<Object>, TypeDeserializer, ValueInstantiator) - Constructor for class org.codehaus.jackson.map.deser.std.CollectionDeserializer
-
- CollectionDeserializer(CollectionDeserializer) - Constructor for class org.codehaus.jackson.map.deser.std.CollectionDeserializer
-
Copy-constructor that can be used by sub-classes to allow
copy-on-write styling copying of settings of an existing instance.
- CollectionLikeType - Class in org.codehaus.jackson.map.type
-
Type that represents things that act similar to
Collection
;
but may or may not be instances of that interface.
- CollectionLikeType(Class<?>, JavaType) - Constructor for class org.codehaus.jackson.map.type.CollectionLikeType
-
Deprecated.
- CollectionLikeType(Class<?>, JavaType, Object, Object) - Constructor for class org.codehaus.jackson.map.type.CollectionLikeType
-
- CollectionSerializer - Class in org.codehaus.jackson.map.ser.std
-
Fallback serializer for cases where Collection is not known to be
of type for which more specializer serializer exists (such as
index-accessible List).
- CollectionSerializer(JavaType, boolean, TypeSerializer, BeanProperty, JsonSerializer<Object>) - Constructor for class org.codehaus.jackson.map.ser.std.CollectionSerializer
-
- collectionSerializer(JavaType, boolean, TypeSerializer, BeanProperty, JsonSerializer<Object>) - Static method in class org.codehaus.jackson.map.ser.std.StdContainerSerializers
-
- CollectionType - Class in org.codehaus.jackson.map.type
-
Type that represents Java Collection types (Lists, Sets).
- collectionType(Class<? extends Collection>, Class<?>) - Static method in class org.codehaus.jackson.map.type.TypeFactory
-
Deprecated.
- collectionType(Class<? extends Collection>, JavaType) - Static method in class org.codehaus.jackson.map.type.TypeFactory
-
Deprecated.
- collectProperties(MapperConfig<?>, JavaType, ClassIntrospector.MixInResolver, boolean) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
- collisionCount() - Method in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Method mostly needed by unit tests; calculates number of
entries that are in collision list.
- collisionCount() - Method in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Method mostly needed by unit tests; calculates number of
entries that are in collision list.
- Comparators - Class in org.codehaus.jackson.map.util
-
Helper class for constructing objects for comparing content values
- Comparators() - Constructor for class org.codehaus.jackson.map.util.Comparators
-
- compareTo(POJOPropertyBuilder) - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- compareTo(ClassKey) - Method in class org.codehaus.jackson.map.type.ClassKey
-
- compareTo(TypeReference<T>) - Method in class org.codehaus.jackson.type.TypeReference
-
The only reason we define this method (and require implementation
of Comparable
) is to prevent constructing a
reference without type information.
- compareTo(Version) - Method in class org.codehaus.jackson.Version
-
- complete(JsonParser, DeserializationContext, Object) - Method in class org.codehaus.jackson.map.deser.impl.ExternalTypeHandler
-
- completeAndClearBuffer(Object[], int) - Method in class org.codehaus.jackson.map.util.ObjectBuffer
-
Method called to indicate that the buffering process is now
complete; and to construct a combined exactly-sized result
array.
- completeAndClearBuffer(Object[], int, Class<T>) - Method in class org.codehaus.jackson.map.util.ObjectBuffer
-
- completeAndClearBuffer(Object[], int, List<Object>) - Method in class org.codehaus.jackson.map.util.ObjectBuffer
-
Another
- completeAndClearBuffer(T, int) - Method in class org.codehaus.jackson.map.util.PrimitiveArrayBuilder
-
- completeAndCoalesce(int) - Method in class org.codehaus.jackson.util.ByteArrayBuilder
-
Method that will complete "manual" output process, coalesce
content (if necessary) and return results as a contiguous buffer.
- configure(DeserializationConfig.Feature, boolean) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
- configure(SerializationConfig.Feature, boolean) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
- configure(JsonParser.Feature, boolean) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
- configure(JsonGenerator.Feature, boolean) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
- configure(DeserializationConfig.Feature, boolean) - Method in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
- configure(SerializationConfig.Feature, boolean) - Method in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
- configure(JsonParser.Feature, boolean) - Method in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
- configure(JsonGenerator.Feature, boolean) - Method in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
- configure(JsonParser.Feature, boolean) - Method in class org.codehaus.jackson.JsonFactory
-
Method for enabling or disabling specified parser feature
(check
JsonParser.Feature
for list of features)
- configure(JsonGenerator.Feature, boolean) - Method in class org.codehaus.jackson.JsonFactory
-
Method for enabling or disabling specified generator feature
(check
JsonGenerator.Feature
for list of features)
- configure(JsonGenerator.Feature, boolean) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for enabling or disabling specified feature:
check
JsonGenerator.Feature
for list of available features.
- configure(JsonParser.Feature, boolean) - Method in class org.codehaus.jackson.JsonParser
-
Method for enabling or disabling specified feature
(check
JsonParser.Feature
for list of features)
- configure(SerializationConfig.Feature, boolean) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method for changing state of an on/off serialization feature for
this object mapper.
- configure(DeserializationConfig.Feature, boolean) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method for changing state of an on/off deserialization feature for
this object mapper.
- configure(JsonParser.Feature, boolean) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method for changing state of an on/off
JsonParser
feature for
JsonFactory
instance this object mapper uses.
- configure(JsonGenerator.Feature, boolean) - Method in class org.codehaus.jackson.map.ObjectMapper
-
- configure(SmileParser.Feature, boolean) - Method in class org.codehaus.jackson.smile.SmileFactory
-
Method for enabling or disabling specified parser feature
(check
SmileParser.Feature
for list of features)
- configure(SmileGenerator.Feature, boolean) - Method in class org.codehaus.jackson.smile.SmileFactory
-
Method for enabling or disabling specified generator feature
(check
JsonGenerator.Feature
for list of features)
- configure(SmileGenerator.Feature, boolean) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- configureFromBooleanCreator(AnnotatedWithParams) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- configureFromDoubleCreator(AnnotatedWithParams) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- configureFromIntCreator(AnnotatedWithParams) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- configureFromLongCreator(AnnotatedWithParams) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- configureFromObjectSettings(AnnotatedWithParams, AnnotatedWithParams, JavaType, AnnotatedWithParams, CreatorProperty[]) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
Method for setting properties related to instantiating values
from JSON Object.
- configureFromStringCreator(AnnotatedWithParams) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- construct(Class<?>, AnnotationIntrospector, ClassIntrospector.MixInResolver) - Static method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Factory method that instantiates an instance.
- construct(MapperConfig<?>, JavaType, Collection<NamedType>, boolean, boolean) - Static method in class org.codehaus.jackson.map.jsontype.impl.TypeNameIdResolver
-
- construct(Class<Enum<?>>, SerializationConfig, BasicBeanDescription) - Static method in class org.codehaus.jackson.map.ser.std.EnumSerializer
-
- construct(String[], JavaType, boolean, TypeSerializer, BeanProperty) - Static method in class org.codehaus.jackson.map.ser.std.MapSerializer
-
Deprecated.
As of 1.8; use the variant with more arguments
- construct(String[], JavaType, boolean, TypeSerializer, BeanProperty, JsonSerializer<Object>, JsonSerializer<Object>) - Static method in class org.codehaus.jackson.map.ser.std.MapSerializer
-
- construct(JavaType) - Static method in class org.codehaus.jackson.map.type.ArrayType
-
Deprecated.
Since 1.9, if you must directly instantiate,
call method that takes handlers
- construct(JavaType, Object, Object) - Static method in class org.codehaus.jackson.map.type.ArrayType
-
- construct(Class<?>, JavaType) - Static method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- construct(Class<?>, JavaType) - Static method in class org.codehaus.jackson.map.type.CollectionType
-
- construct(Class<?>, JavaType, JavaType) - Static method in class org.codehaus.jackson.map.type.MapLikeType
-
- construct(Class<?>, JavaType, JavaType) - Static method in class org.codehaus.jackson.map.type.MapType
-
- construct(Class<?>) - Static method in class org.codehaus.jackson.map.type.SimpleType
-
- construct(Class<Enum<?>>, AnnotationIntrospector) - Static method in class org.codehaus.jackson.map.util.EnumValues
-
- constructAll() - Static method in class org.codehaus.jackson.map.deser.std.StdKeyDeserializers
-
- constructAnySetter(DeserializationConfig, BasicBeanDescription, AnnotatedMethod) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Method called to construct fallback
SettableAnyProperty
for handling unknown bean properties, given a method that
has been designated as such setter.
- constructArrayType(Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructArrayType(JavaType) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructBeanDeserializerBuilder(BasicBeanDescription) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Overridable method that constructs a
BeanDeserializerBuilder
which is used to accumulate information needed to create deserializer
instance.
- constructBeanSerializer(SerializationConfig, BasicBeanDescription, BeanProperty) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Method called to construct serializer for serializing specified bean type.
- constructBeanSerializerBuilder(BasicBeanDescription) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
- constructCalendar(Date) - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- constructCalendar(Date) - Method in class org.codehaus.jackson.map.DeserializationContext
-
Convenience method for constructing Calendar instance set
to specified time, to be modified and used by caller.
- constructCollectionLikeType(Class<?>, Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructCollectionLikeType(Class<?>, JavaType) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructCollectionType(Class<? extends Collection>, Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructCollectionType(Class<? extends Collection>, JavaType) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructCreatorProperty(DeserializationConfig, BasicBeanDescription, String, int, AnnotatedParameter, Object) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Method that will construct a property object that represents
a logical property passed via Creator (constructor or static
factory method)
- constructDefaultValueInstantiator(DeserializationConfig, BasicBeanDescription) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Method that will construct standard default
ValueInstantiator
using annotations (like @JsonCreator) and visibility rules
- constructEnumKeyDeserializer(EnumResolver<?>) - Static method in class org.codehaus.jackson.map.deser.std.StdKeyDeserializers
-
- constructEnumKeyDeserializer(EnumResolver<?>, AnnotatedMethod) - Static method in class org.codehaus.jackson.map.deser.std.StdKeyDeserializers
-
- constructEnumResolver(Class<?>, DeserializationConfig) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- constructFilteredBeanWriter(BeanPropertyWriter, Class<?>[]) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Method called to construct a filtered writer, for given view
definitions.
- constructFor(Class<ET>, AnnotationIntrospector) - Static method in class org.codehaus.jackson.map.util.EnumResolver
-
Factory method for constructing resolver that maps from Enum.name() into
Enum value
- constructFromCanonical(String) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructFromName(Class<Enum<?>>, AnnotationIntrospector) - Static method in class org.codehaus.jackson.map.util.EnumValues
-
- constructFromToString(Class<Enum<?>>, AnnotationIntrospector) - Static method in class org.codehaus.jackson.map.util.EnumValues
-
- constructMapLikeType(Class<?>, JavaType, JavaType) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructMapLikeType(Class<?>, Class<?>, Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructMapType(Class<? extends Map>, JavaType, JavaType) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Method for constructing a
MapType
instance
- constructMapType(Class<? extends Map>, Class<?>, Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Method for constructing a
MapType
instance
- constructParametricType(Class<?>, Class<?>...) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Factory method for constructing
JavaType
that
represents a parameterized type.
- constructParametricType(Class<?>, JavaType...) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Factory method for constructing
JavaType
that
represents a parameterized type.
- constructParser(int, ObjectCodec, BytesToNameCanonicalizer, CharsToNameCanonicalizer) - Method in class org.codehaus.jackson.impl.ByteSourceBootstrapper
-
- constructParser(int, int, ObjectCodec, BytesToNameCanonicalizer) - Method in class org.codehaus.jackson.smile.SmileParserBootstrapper
-
- constructPropertyBuilder(SerializationConfig, BasicBeanDescription) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
- constructPropertyCollector(MapperConfig<?>, AnnotatedClass, JavaType, boolean) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
Overridable method called for creating
POJOPropertiesCollector
instance
to use; override is needed if a custom sub-class is to be used.
- constructRawCollectionLikeType(Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Method that can be used to construct "raw" Collection-like type; meaning that its
parameterization is unknown.
- constructRawCollectionType(Class<? extends Collection>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Method that can be used to construct "raw" Collection type; meaning that its
parameterization is unknown.
- constructRawMapLikeType(Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Method that can be used to construct "raw" Map-like type; meaning that its
parameterization is unknown.
- constructRawMapType(Class<? extends Map>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Method that can be used to construct "raw" Map type; meaning that its
parameterization is unknown.
- constructReader() - Method in class org.codehaus.jackson.impl.ByteSourceBootstrapper
-
- constructSettableProperty(DeserializationConfig, BasicBeanDescription, String, AnnotatedMethod) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Method that will construct a regular bean property setter using
the given setter method.
- constructSettableProperty(DeserializationConfig, BasicBeanDescription, String, AnnotatedField) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- constructSetterlessProperty(DeserializationConfig, BasicBeanDescription, String, AnnotatedMethod) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Method that will construct a regular bean property setter using
the given setter method.
- constructSimpleType(Class<?>, JavaType[]) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Method for constructing a type instance with specified parameterization.
- constructSpecializedType(JavaType, Class<?>) - Method in class org.codehaus.jackson.map.MapperConfig
-
- constructSpecializedType(JavaType, Class<?>) - Method in class org.codehaus.jackson.map.SerializerProvider
-
- constructSpecializedType(JavaType, Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Factory method for creating a subtype of given base type, as defined
by specified subclass; but retaining generic type information if any.
- constructStringKeyDeserializer(DeserializationConfig, JavaType) - Static method in class org.codehaus.jackson.map.deser.std.StdKeyDeserializers
-
- constructTextBuffer() - Method in class org.codehaus.jackson.io.IOContext
-
- constructType(Class<?>) - Method in class org.codehaus.jackson.map.DeserializationContext
-
- constructType(Class<?>) - Method in class org.codehaus.jackson.map.MapperConfig
-
Helper method that will construct
JavaType
for given
raw class.
- constructType(TypeReference<?>) - Method in class org.codehaus.jackson.map.MapperConfig
-
Helper method that will construct
JavaType
for given
type reference
This is a simple short-cut for:
- constructType(Type) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Convenience method for constructing
JavaType
out of given
type (typically
java.lang.Class
), but without explicit
context.
- constructType(Type) - Method in class org.codehaus.jackson.map.SerializerProvider
-
- constructType(Type) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructType(Type, TypeBindings) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructType(TypeReference<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructType(Type, Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructType(Type, JavaType) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- constructUnsafe(Class<?>) - Static method in class org.codehaus.jackson.map.type.SimpleType
-
Method used by core Jackson classes: NOT to be used by application code.
- constructUnsafe(Class<?>, AnnotationIntrospector) - Static method in class org.codehaus.jackson.map.util.EnumResolver
-
This method is needed because of the dynamic nature of constructing Enum
resolvers.
- constructUnsafeUsingToString(Class<?>) - Static method in class org.codehaus.jackson.map.util.EnumResolver
-
- constructUsingToString(Class<ET>) - Static method in class org.codehaus.jackson.map.util.EnumResolver
-
Factory method for constructing resolver that maps from Enum.toString() into
Enum value
- constructValueInstantiator(DeserializationConfig) - Method in class org.codehaus.jackson.map.deser.impl.CreatorCollector
-
- constructViewBased(BeanPropertyWriter, Class<?>[]) - Static method in class org.codehaus.jackson.map.ser.FilteredBeanPropertyWriter
-
- constructWithoutSuperTypes(Class<?>, AnnotationIntrospector, ClassIntrospector.MixInResolver) - Static method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- containedParsersCount() - Method in class org.codehaus.jackson.util.JsonParserSequence
-
Method that is most useful for debugging or testing;
returns actual number of underlying parsers sequence
was constructed with (nor just ones remaining active)
- containedType(int) - Method in class org.codehaus.jackson.map.type.ArrayType
-
- containedType(int) - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- containedType(int) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- containedType(int) - Method in class org.codehaus.jackson.map.type.SimpleType
-
- containedType(int) - Method in class org.codehaus.jackson.type.JavaType
-
Method for accessing definitions of contained ("child")
types.
- containedTypeCount() - Method in class org.codehaus.jackson.map.type.ArrayType
-
- containedTypeCount() - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- containedTypeCount() - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- containedTypeCount() - Method in class org.codehaus.jackson.map.type.SimpleType
-
- containedTypeCount() - Method in class org.codehaus.jackson.type.JavaType
-
Method for checking how many contained types this type
has.
- containedTypeName(int) - Method in class org.codehaus.jackson.map.type.ArrayType
-
Not sure what symbolic name is used internally, if any;
let's follow naming of Collection types here.
- containedTypeName(int) - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
Not sure if we should count on this, but type names
for core interfaces use "E" for element type
- containedTypeName(int) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
Not sure if we should count on this, but type names
for core interfaces are "K" and "V" respectively.
- containedTypeName(int) - Method in class org.codehaus.jackson.map.type.SimpleType
-
- containedTypeName(int) - Method in class org.codehaus.jackson.type.JavaType
-
Method for accessing name of type variable in indicated
position.
- ContainerDeserializer<T> - Class in org.codehaus.jackson.map.deser
-
- ContainerDeserializer(Class<?>) - Constructor for class org.codehaus.jackson.map.deser.ContainerDeserializer
-
Deprecated.
- ContainerDeserializerBase<T> - Class in org.codehaus.jackson.map.deser.std
-
Intermediate base deserializer class that adds more shared accessor
so that other classes can access information about contained (value)
types
- ContainerDeserializerBase(Class<?>) - Constructor for class org.codehaus.jackson.map.deser.std.ContainerDeserializerBase
-
- ContainerNode - Class in org.codehaus.jackson.node
-
This intermediate base class is used for all container nodes,
specifically, array and object nodes.
- ContainerNode(JsonNodeFactory) - Constructor for class org.codehaus.jackson.node.ContainerNode
-
- ContainerNode.NoNodesIterator - Class in org.codehaus.jackson.node
-
- ContainerNode.NoStringsIterator - Class in org.codehaus.jackson.node
-
- ContainerSerializerBase<T> - Class in org.codehaus.jackson.map.ser.std
-
Intermediate base class for types that contain element(s) of
other types.
- ContainerSerializerBase(Class<T>) - Constructor for class org.codehaus.jackson.map.ser.std.ContainerSerializerBase
-
- ContainerSerializerBase(Class<?>, boolean) - Constructor for class org.codehaus.jackson.map.ser.std.ContainerSerializerBase
-
Alternate constructor that is (alas!) needed to work
around kinks of generic type handling
- ContainerSerializers - Class in org.codehaus.jackson.map.ser
-
- ContainerSerializers() - Constructor for class org.codehaus.jackson.map.ser.ContainerSerializers
-
Deprecated.
- contains(LinkedNode<ST>, ST) - Static method in class org.codehaus.jackson.map.util.LinkedNode
-
Convenience method that can be used to check if a linked list
with given head node (which may be null to indicate empty list)
contains given value
- contentsAsArray() - Method in class org.codehaus.jackson.util.TextBuffer
-
- contentsAsDecimal() - Method in class org.codehaus.jackson.util.TextBuffer
-
Convenience method for converting contents of the buffer
into a
BigDecimal
.
- contentsAsDouble() - Method in class org.codehaus.jackson.util.TextBuffer
-
Convenience method for converting contents of the buffer
into a Double value.
- contentsAsString() - Method in class org.codehaus.jackson.util.TextBuffer
-
- contentSchema() - Method in class org.codehaus.jackson.map.ser.std.IndexedStringListSerializer
-
- contentSchema() - Method in class org.codehaus.jackson.map.ser.std.StaticListSerializerBase
-
- contentSchema() - Method in class org.codehaus.jackson.map.ser.std.StringCollectionSerializer
-
- ContextualDeserializer<T> - Interface in org.codehaus.jackson.map
-
Add-on interface that
JsonDeserializer
s can implement to get a callback
that can be used to create contextual instances of deserializer to use for
handling properties of supported type.
- ContextualKeyDeserializer - Interface in org.codehaus.jackson.map
-
Add-on interface that
KeyDeserializer
s can implement to get a callback
that can be used to create contextual instances of key deserializer to use for
handling Map keys of supported type.
- ContextualSerializer<T> - Interface in org.codehaus.jackson.map
-
Add-on interface that
JsonSerializer
s can implement to get a callback
that can be used to create contextual instances of serializer to use for
handling properties of supported type.
- convertNumberToBigDecimal() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- convertNumberToBigInteger() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- convertNumberToDouble() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- convertNumberToInt() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- convertNumberToLong() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- convertValue(Object, Class<T>) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Convenience method for doing two-step conversion from given value, into
instance of given value type.
- convertValue(Object, TypeReference) - Method in class org.codehaus.jackson.map.ObjectMapper
-
- convertValue(Object, JavaType) - Method in class org.codehaus.jackson.map.ObjectMapper
-
- copyCurrentEvent(JsonParser) - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- copyCurrentEvent(JsonParser) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for copying contents of the current event that
the given parser instance points to.
- copyCurrentEvent(JsonParser) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- copyCurrentEvent(JsonParser) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- copyCurrentStructure(JsonParser) - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- copyCurrentStructure(JsonParser) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for copying contents of the current event
and following events that it encloses
the given parser instance points to.
- copyCurrentStructure(JsonParser) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- copyCurrentStructure(JsonParser) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- copyDeserializationConfig() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that creates a copy of
the shared default
DeserializationConfig
object
that defines configuration settings for deserialization.
- copyHexBytes() - Static method in class org.codehaus.jackson.util.CharTypes
-
- copyHexChars() - Static method in class org.codehaus.jackson.util.CharTypes
-
- copySerializationConfig() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that creates a copy of
the shared default
SerializationConfig
object
that defines configuration settings for serialization.
- CoreXMLDeserializers - Class in org.codehaus.jackson.map.ext
-
Container deserializers that handle "core" XML types: ones included in standard
JDK 1.5.
- CoreXMLDeserializers() - Constructor for class org.codehaus.jackson.map.ext.CoreXMLDeserializers
-
- CoreXMLDeserializers.DurationDeserializer - Class in org.codehaus.jackson.map.ext
-
- CoreXMLDeserializers.DurationDeserializer() - Constructor for class org.codehaus.jackson.map.ext.CoreXMLDeserializers.DurationDeserializer
-
- CoreXMLDeserializers.GregorianCalendarDeserializer - Class in org.codehaus.jackson.map.ext
-
- CoreXMLDeserializers.GregorianCalendarDeserializer() - Constructor for class org.codehaus.jackson.map.ext.CoreXMLDeserializers.GregorianCalendarDeserializer
-
- CoreXMLDeserializers.QNameDeserializer - Class in org.codehaus.jackson.map.ext
-
- CoreXMLDeserializers.QNameDeserializer() - Constructor for class org.codehaus.jackson.map.ext.CoreXMLDeserializers.QNameDeserializer
-
- CoreXMLSerializers - Class in org.codehaus.jackson.map.ext
-
Provider for serializers of XML types that are part of full JDK 1.5, but
that some alleged 1.5 platforms are missing (Android, GAE).
- CoreXMLSerializers() - Constructor for class org.codehaus.jackson.map.ext.CoreXMLSerializers
-
- CoreXMLSerializers.XMLGregorianCalendarSerializer - Class in org.codehaus.jackson.map.ext
-
- CoreXMLSerializers.XMLGregorianCalendarSerializer() - Constructor for class org.codehaus.jackson.map.ext.CoreXMLSerializers.XMLGregorianCalendarSerializer
-
- couldDeserialize() - Method in class org.codehaus.jackson.map.BeanPropertyDefinition
-
- couldSerialize() - Method in class org.codehaus.jackson.map.BeanPropertyDefinition
-
- couldSerialize() - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- create(AnnotationIntrospector, AnnotationIntrospector) - Static method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
Helper method for constructing a Pair from two given introspectors (if
neither is null); or returning non-null introspector if one is null
(and return just null if both are null)
- createArrayDeserializer(DeserializationConfig, DeserializerProvider, ArrayType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- createArrayDeserializer(DeserializationConfig, DeserializerProvider, ArrayType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.CustomDeserializerFactory
-
Deprecated.
- createArrayDeserializer(DeserializationConfig, DeserializerProvider, ArrayType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
Method called to create (or, for completely immutable deserializers,
reuse) a deserializer that can convert JSON content into values of
specified Java type.
- createArrayNode() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Note: return type is co-variant, as basic ObjectCodec
abstraction can not refer to concrete node types (as it's
part of core package, whereas impls are part of mapper
package)
- createArrayNode() - Method in class org.codehaus.jackson.map.ObjectReader
-
- createArrayNode() - Method in class org.codehaus.jackson.ObjectCodec
-
Method for construct root level Array nodes
for Tree Model instances.
- createBeanDeserializer(DeserializationConfig, DeserializerProvider, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Method that
DeserializerProvider
s call to create a new
deserializer for types other than Collections, Maps, arrays and
enums.
- createBeanDeserializer(DeserializationConfig, DeserializerProvider, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.CustomDeserializerFactory
-
Deprecated.
- createBeanDeserializer(DeserializationConfig, DeserializerProvider, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
Method called to create (or, for completely immutable deserializers,
reuse) a deserializer that can convert JSON content into values of
specified Java "bean" (POJO) type.
- createChildArrayContext(int, int) - Method in class org.codehaus.jackson.impl.JsonReadContext
-
- createChildArrayContext() - Method in class org.codehaus.jackson.impl.JsonWriteContext
-
- createChildObjectContext(int, int) - Method in class org.codehaus.jackson.impl.JsonReadContext
-
- createChildObjectContext() - Method in class org.codehaus.jackson.impl.JsonWriteContext
-
- createCollectionDeserializer(DeserializationConfig, DeserializerProvider, CollectionType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- createCollectionDeserializer(DeserializationConfig, DeserializerProvider, CollectionType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
- createCollectionLikeDeserializer(DeserializationConfig, DeserializerProvider, CollectionLikeType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- createCollectionLikeDeserializer(DeserializationConfig, DeserializerProvider, CollectionLikeType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
- createContextual(DeserializationConfig, BeanProperty) - Method in interface org.codehaus.jackson.map.ContextualDeserializer
-
Method called to see if a different (or differently configured) deserializer
is needed to deserialize values of specified property.
- createContextual(DeserializationConfig, BeanProperty) - Method in interface org.codehaus.jackson.map.ContextualKeyDeserializer
-
Method called to see if a different (or differently configured) key deserializer
is needed to deserialize keys of specified Map property.
- createContextual(SerializationConfig, BeanProperty) - Method in interface org.codehaus.jackson.map.ContextualSerializer
-
Method called to see if a different (or differently configured) serializer
is needed to serialize values of specified property.
- createDummy(Class<?>) - Static method in class org.codehaus.jackson.map.ser.BeanSerializer
-
Method for constructing dummy bean deserializer; one that
never outputs any properties
- createDummy() - Method in class org.codehaus.jackson.map.ser.BeanSerializerBuilder
-
Factory method for constructing an "empty" serializer; one that
outputs no properties (but handles JSON objects properly, including
type information)
- createEnumDeserializer(DeserializationConfig, DeserializerProvider, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
Factory method for constructing serializers of
Enum
types.
- createEnumDeserializer(DeserializationConfig, DeserializerProvider, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.CustomDeserializerFactory
-
Deprecated.
- createEnumDeserializer(DeserializationConfig, DeserializerProvider, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
- createFlattened(JsonParser, JsonParser) - Static method in class org.codehaus.jackson.util.JsonParserSequence
-
Method that will construct a parser (possibly a sequence) that
contains all given sub-parsers.
- createFromBoolean(boolean) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- createFromBoolean(boolean) - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
- createFromDouble(double) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- createFromDouble(double) - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
- createFromInt(int) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- createFromInt(int) - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
- createFromLong(long) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- createFromLong(long) - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
- createFromObjectWith(Object[]) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- createFromObjectWith(Object[]) - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method called to create value instance from JSON Object when
instantiation arguments are passed; this is done, for example when passing information
specified with "Creator" annotations.
- createFromString(String) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- createFromString(String) - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
- createInstance(SerializationConfig, SerializerFactory) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
Overridable method, used to create a non-blueprint instances from the blueprint.
- createInstance(Class<T>, boolean) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Method that can be called to try to create an instantiate of
specified type.
- createJsonGenerator(OutputStream, JsonEncoding) - Method in class org.codehaus.jackson.JsonFactory
-
Method for constructing JSON generator for writing JSON content
using specified output stream.
- createJsonGenerator(Writer) - Method in class org.codehaus.jackson.JsonFactory
-
Method for constructing JSON generator for writing JSON content
using specified Writer.
- createJsonGenerator(OutputStream) - Method in class org.codehaus.jackson.JsonFactory
-
Convenience method for constructing generator that uses default
encoding of the format (UTF-8 for JSON and most other data formats).
- createJsonGenerator(File, JsonEncoding) - Method in class org.codehaus.jackson.JsonFactory
-
Method for constructing JSON generator for writing JSON content
to specified file, overwriting contents it might have (or creating
it if such file does not yet exist).
- createJsonGenerator(OutputStream, JsonEncoding) - Method in class org.codehaus.jackson.smile.SmileFactory
-
note: co-variant return type
- createJsonGenerator(OutputStream) - Method in class org.codehaus.jackson.smile.SmileFactory
-
Since Smile format always uses UTF-8 internally, no encoding need
to be passed to this method.
- createJsonParser(File) - Method in class org.codehaus.jackson.JsonFactory
-
Method for constructing JSON parser instance to parse
contents of specified file.
- createJsonParser(URL) - Method in class org.codehaus.jackson.JsonFactory
-
Method for constructing JSON parser instance to parse
contents of resource reference by given URL.
- createJsonParser(InputStream) - Method in class org.codehaus.jackson.JsonFactory
-
Method for constructing JSON parser instance to parse
the contents accessed via specified input stream.
- createJsonParser(Reader) - Method in class org.codehaus.jackson.JsonFactory
-
Method for constructing parser for parsing
the contents accessed via specified Reader.
- createJsonParser(byte[]) - Method in class org.codehaus.jackson.JsonFactory
-
Method for constructing parser for parsing
the contents of given byte array.
- createJsonParser(byte[], int, int) - Method in class org.codehaus.jackson.JsonFactory
-
Method for constructing parser for parsing
the contents of given byte array.
- createJsonParser(String) - Method in class org.codehaus.jackson.JsonFactory
-
Method for constructing parser for parsing
contens of given String.
- createJsonParser(File) - Method in class org.codehaus.jackson.smile.SmileFactory
-
- createJsonParser(URL) - Method in class org.codehaus.jackson.smile.SmileFactory
-
- createJsonParser(InputStream) - Method in class org.codehaus.jackson.smile.SmileFactory
-
- createJsonParser(byte[]) - Method in class org.codehaus.jackson.smile.SmileFactory
-
- createJsonParser(byte[], int, int) - Method in class org.codehaus.jackson.smile.SmileFactory
-
- createKeyDeserializer(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- createKeyDeserializer(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
Method called to find if factory knows how to create a key deserializer
for specified type; currently this means checking if a module has registered
possible deserializers.
- createKeySerializer(SerializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
- createKeySerializer(SerializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.SerializerFactory
-
Method called to create serializer to use for serializing JSON property names (which must
be output as JsonToken.FIELD_NAME
) for Map that has specified declared
key type, and is for specified property (or, if property is null, as root value)
- createMapDeserializer(DeserializationConfig, DeserializerProvider, MapType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- createMapDeserializer(DeserializationConfig, DeserializerProvider, MapType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
- createMapLikeDeserializer(DeserializationConfig, DeserializerProvider, MapLikeType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- createMapLikeDeserializer(DeserializationConfig, DeserializerProvider, MapLikeType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
- createMatcher(JsonFactory, MatchStrength) - Method in class org.codehaus.jackson.format.InputAccessor.Std
-
- createObjectNode() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Note: return type is co-variant, as basic ObjectCodec
abstraction can not refer to concrete node types (as it's
part of core package, whereas impls are part of mapper
package)
- createObjectNode() - Method in class org.codehaus.jackson.map.ObjectReader
-
- createObjectNode() - Method in class org.codehaus.jackson.map.ser.std.SerializerBase
-
- createObjectNode() - Method in class org.codehaus.jackson.ObjectCodec
-
Method for construct root level Object nodes
for Tree Model instances.
- createParserWithMatch() - Method in class org.codehaus.jackson.format.DataFormatMatcher
-
Convenience method for trying to construct a
JsonParser
for
parsing content which is assumed to be in detected data format.
- createRoot() - Static method in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Factory method to call to create a symbol table instance with a
randomized seed value.
- createRoot(int) - Static method in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Factory method that should only be called from unit tests, where seed
value should remain the same.
- createRoot() - Static method in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Method called to create root canonicalizer for a
JsonFactory
instance.
- createRoot(int) - Static method in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
- createRootContext(int, int) - Static method in class org.codehaus.jackson.impl.JsonReadContext
-
- createRootContext() - Static method in class org.codehaus.jackson.impl.JsonReadContext
-
- createRootContext() - Static method in class org.codehaus.jackson.impl.JsonWriteContext
-
- createSchemaNode(String) - Method in class org.codehaus.jackson.map.ser.std.SerializerBase
-
- createSchemaNode(String, boolean) - Method in class org.codehaus.jackson.map.ser.std.SerializerBase
-
- createSerializer(SerializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
- createSerializer(SerializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Main serializer constructor method.
- createSerializer(SerializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.ser.CustomSerializerFactory
-
- createSerializer(SerializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.SerializerFactory
-
Method called to create (or, for immutable serializers, reuse) a serializer for given type.
- createSerializer(JavaType, SerializationConfig) - Method in class org.codehaus.jackson.map.SerializerFactory
-
Deprecated.
Since 1.7, call variant with more arguments
- createTreeDeserializer(DeserializationConfig, DeserializerProvider, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- createTreeDeserializer(DeserializationConfig, DeserializerProvider, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
Method called to create and return a deserializer that can construct
JsonNode(s) from JSON content.
- createTypeSerializer(SerializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
Method called to construct a type serializer for values with given declared
base type.
- createTypeSerializer(SerializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.SerializerFactory
-
Method called to create a type information serializer for given base type,
if one is needed.
- createTypeSerializer(JavaType, SerializationConfig) - Method in class org.codehaus.jackson.map.SerializerFactory
-
Deprecated.
Since 1.7, call variant with more arguments
- createUnshared(SubtypeResolver) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
Method that is called to create a non-shared copy of the configuration
to be used for a deserialization operation.
- createUnshared(SubtypeResolver) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method to use for constructing an instance that is not shared
between multiple operations but only used for a single one
(which may be this instance, if it is immutable; if not, a copy
is constructed with same settings)
- createUnshared(SubtypeResolver) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- createUsingDefault() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- createUsingDefault() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method called to create value instance from a JSON value when
no data needs to passed to creator (constructor, factory method);
typically this will call the default constructor of the value object.
- createUsingDelegate(Object) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- createUsingDelegate(Object) - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method to called to create value instance from JSON Object using
an intermediate "delegate" value to pass to createor method
- CreatorCollector - Class in org.codehaus.jackson.map.deser.impl
-
Container class for storing information on creators (based on annotations,
visibility), to be able to build actual instantiator later on.
- CreatorCollector(BasicBeanDescription, boolean) - Constructor for class org.codehaus.jackson.map.deser.impl.CreatorCollector
-
- creatorEnabled() - Method in enum org.codehaus.jackson.annotate.JsonMethod
-
- CreatorProperty - Class in org.codehaus.jackson.map.deser.impl
-
This concrete sub-class implements property that is passed
via Creator (constructor or static factory method).
- CreatorProperty(String, JavaType, TypeDeserializer, Annotations, AnnotatedParameter, int, Object) - Constructor for class org.codehaus.jackson.map.deser.impl.CreatorProperty
-
- CreatorProperty(CreatorProperty, JsonDeserializer<Object>) - Constructor for class org.codehaus.jackson.map.deser.impl.CreatorProperty
-
- currentNode() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- currentNumericNode() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- CustomDeserializerFactory - Class in org.codehaus.jackson.map.deser
-
- CustomDeserializerFactory() - Constructor for class org.codehaus.jackson.map.deser.CustomDeserializerFactory
-
Deprecated.
- CustomDeserializerFactory(DeserializerFactory.Config) - Constructor for class org.codehaus.jackson.map.deser.CustomDeserializerFactory
-
Deprecated.
- CustomSerializerFactory - Class in org.codehaus.jackson.map.ser
-
Serializer factory implementation that allows for configuring
mapping between types (classes) and serializers to use, by using
multiple types of overrides.
- CustomSerializerFactory() - Constructor for class org.codehaus.jackson.map.ser.CustomSerializerFactory
-
- CustomSerializerFactory(SerializerFactory.Config) - Constructor for class org.codehaus.jackson.map.ser.CustomSerializerFactory
-
- customSerializers() - Method in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
- customSerializers() - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
- failForEmpty(Object) - Method in class org.codehaus.jackson.map.ser.impl.UnknownSerializer
-
- FailingSerializer - Class in org.codehaus.jackson.map.ser.impl
-
- FailingSerializer(String) - Constructor for class org.codehaus.jackson.map.ser.impl.FailingSerializer
-
- FALSE - Static variable in class org.codehaus.jackson.node.BooleanNode
-
- fastSimpleType(Class<?>) - Static method in class org.codehaus.jackson.map.type.TypeFactory
-
Deprecated.
- fieldEnabled() - Method in enum org.codehaus.jackson.annotate.JsonMethod
-
- fields() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- filterBeanProperties(SerializationConfig, BasicBeanDescription, List<BeanPropertyWriter>) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Overridable method that can filter out properties.
- FilteredBeanPropertyWriter - Class in org.codehaus.jackson.map.ser
-
Decorated
BeanPropertyWriter
that will filter out
properties that are not to be included in currently active
JsonView.
- FilteredBeanPropertyWriter() - Constructor for class org.codehaus.jackson.map.ser.FilteredBeanPropertyWriter
-
- filteredWriter(FilterProvider) - Method in class org.codehaus.jackson.map.ObjectMapper
-
- filterOutAllExcept(Set<String>) - Static method in class org.codehaus.jackson.map.ser.impl.SimpleBeanPropertyFilter
-
Factory method to construct filter that filters out all properties except
ones includes in set
- filterOutAllExcept(String...) - Static method in class org.codehaus.jackson.map.ser.impl.SimpleBeanPropertyFilter
-
- FilterProvider - Class in org.codehaus.jackson.map.ser
-
Interface for objects that providers instances of
BeanPropertyFilter
that match given ids.
- FilterProvider() - Constructor for class org.codehaus.jackson.map.ser.FilterProvider
-
- find(String) - Method in class org.codehaus.jackson.map.deser.impl.BeanPropertyMap
-
- find(String, Class<?>[]) - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethodMap
-
- find(Method) - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethodMap
-
- find(SerializerCache.TypeKey) - Method in class org.codehaus.jackson.map.ser.impl.JsonSerializerMap
-
- findAccessType(Annotated) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
Method for locating JAXB
XmlAccessType
annotation value
for given annotated entity, if it has one, or inherits one from
its ancestors (in JAXB sense, package etc).
- findAndAddSerializer(Class<?>, SerializerProvider, BeanProperty) - Method in class org.codehaus.jackson.map.ser.impl.PropertySerializerMap
-
Method called if initial lookup fails; will both find serializer
and construct new map instance if warranted, and return both
- findAndAddSerializer(JavaType, SerializerProvider, BeanProperty) - Method in class org.codehaus.jackson.map.ser.impl.PropertySerializerMap
-
- findAnnotation(Class<A>, Annotated, boolean, boolean, boolean) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
Finds an annotation associated with given annotatable thing; or if
not found, a default annotation it may have (from super class, package
and so on)
- findAnyGetter() - Method in class org.codehaus.jackson.map.BeanDescription
-
- findAnyGetter() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Method used to locate the method of introspected class that
implements
JsonAnyGetter
.
- findAnySetter() - Method in class org.codehaus.jackson.map.BeanDescription
-
- findAnySetter() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Method used to locate the method of introspected class that
implements
JsonAnySetter
.
- findArrayDeserializer(ArrayType, DeserializationConfig, DeserializerProvider, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.Deserializers.Base
-
- findArrayDeserializer(ArrayType, DeserializationConfig, DeserializerProvider, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in interface org.codehaus.jackson.map.Deserializers
-
Method called to locate serializer for specified array type.
- findArrayDeserializer(ArrayType, DeserializationConfig, DeserializerProvider, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.module.SimpleDeserializers
-
- findArraySerializer(SerializationConfig, ArrayType, BeanDescription, BeanProperty, TypeSerializer, JsonSerializer<Object>) - Method in class org.codehaus.jackson.map.module.SimpleSerializers
-
- findArraySerializer(SerializationConfig, ArrayType, BeanDescription, BeanProperty, TypeSerializer, JsonSerializer<Object>) - Method in class org.codehaus.jackson.map.Serializers.Base
-
- findArraySerializer(SerializationConfig, ArrayType, BeanDescription, BeanProperty, TypeSerializer, JsonSerializer<Object>) - Method in interface org.codehaus.jackson.map.Serializers
-
Method called by serialization framework first time a serializer is needed for
specified array type.
- findAutoDetectVisibility(AnnotatedClass, VisibilityChecker<?>) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking if annotations indicate changes to minimum visibility levels
needed for auto-detecting property elements (fields, methods, constructors).
- findAutoDetectVisibility(AnnotatedClass, VisibilityChecker<?>) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findAutoDetectVisibility(AnnotatedClass, VisibilityChecker<?>) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findAutoDetectVisibility(AnnotatedClass, VisibilityChecker<?>) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findBackReference(String) - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
- findBackReferenceProperties() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Method for locating all back-reference properties (setters, fields) bean has
- findBeanDeserializer(JavaType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty) - Method in class org.codehaus.jackson.map.Deserializers.Base
-
- findBeanDeserializer(JavaType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty) - Method in interface org.codehaus.jackson.map.Deserializers
-
Method called to locate deserializer for specified value type which does not belong to any other
category (not an Enum, Collection, Map, Array or tree node)
- findBeanDeserializer(JavaType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty) - Method in class org.codehaus.jackson.map.module.SimpleDeserializers
-
- findBeanProperties(SerializationConfig, BasicBeanDescription) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Method used to collect all actual serializable properties.
- findBeanSerializer(SerializationConfig, JavaType, BasicBeanDescription, BeanProperty) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
- findCachability(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method that checks whether specified class has annotations
that indicate that it is (or is not) cachable.
- findCachability(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findCachability(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findCachability(AnnotatedClass) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findClass(String, TypeParser.MyTokenizer) - Method in class org.codehaus.jackson.map.type.TypeParser
-
- findClass(String) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
- findCollectionDeserializer(CollectionType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.Deserializers.Base
-
- findCollectionDeserializer(CollectionType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in interface org.codehaus.jackson.map.Deserializers
-
Method called to locate serializer for specified
Collection
(List, Set etc) type.
- findCollectionDeserializer(CollectionType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.module.SimpleDeserializers
-
- findCollectionLikeDeserializer(CollectionLikeType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.Deserializers.Base
-
- findCollectionLikeDeserializer(CollectionLikeType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in interface org.codehaus.jackson.map.Deserializers
-
Method called to locate serializer for specified
"Collection-like" type (one that acts
like
Collection
but does not implement it).
- findCollectionLikeDeserializer(CollectionLikeType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.module.SimpleDeserializers
-
- findCollectionLikeSerializer(SerializationConfig, CollectionLikeType, BeanDescription, BeanProperty, TypeSerializer, JsonSerializer<Object>) - Method in class org.codehaus.jackson.map.module.SimpleSerializers
-
- findCollectionLikeSerializer(SerializationConfig, CollectionLikeType, BeanDescription, BeanProperty, TypeSerializer, JsonSerializer<Object>) - Method in class org.codehaus.jackson.map.Serializers.Base
-
- findCollectionLikeSerializer(SerializationConfig, CollectionLikeType, BeanDescription, BeanProperty, TypeSerializer, JsonSerializer<Object>) - Method in interface org.codehaus.jackson.map.Serializers
-
- findCollectionSerializer(SerializationConfig, CollectionType, BeanDescription, BeanProperty, TypeSerializer, JsonSerializer<Object>) - Method in class org.codehaus.jackson.map.module.SimpleSerializers
-
- findCollectionSerializer(SerializationConfig, CollectionType, BeanDescription, BeanProperty, TypeSerializer, JsonSerializer<Object>) - Method in class org.codehaus.jackson.map.Serializers.Base
-
- findCollectionSerializer(SerializationConfig, CollectionType, BeanDescription, BeanProperty, TypeSerializer, JsonSerializer<Object>) - Method in interface org.codehaus.jackson.map.Serializers
-
- findConstructor(Class<T>, boolean) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
- findContentDeserializer(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for getting a deserializer definition for content (values) of
associated Collection
, array
or
Map
property.
- findContentDeserializer(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findContentDeserializer(Annotated) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findContentDeserializer(Annotated) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findContentDeserializer(Annotated) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findContentSerializer(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for getting a serializer definition for content (values) of
associated Collection
, array
or Map
property.
- findContentSerializer(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findContentSerializer(Annotated) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findContentSerializer(SerializationConfig, Annotated, BeanProperty) - Static method in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
- findCreatorProperty(String) - Method in class org.codehaus.jackson.map.deser.impl.PropertyBasedCreator
-
- findCreatorPropertyNames() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Method for getting ordered list of named Creator properties.
- findCustomSerializer(Class<?>, SerializationConfig) - Method in class org.codehaus.jackson.map.ser.CustomSerializerFactory
-
- findDefaultConstructor() - Method in class org.codehaus.jackson.map.BeanDescription
-
- findDefaultConstructor() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Method that will locate the no-arg constructor for this class,
if it has one, and that constructor has not been marked as
ignorable.
- findDeserializableFields(VisibilityChecker<?>, Collection<String>) - Method in class org.codehaus.jackson.map.BeanDescription
-
- findDeserializableFields(VisibilityChecker<?>, Collection<String>) - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- findDeserializablePropertyName(AnnotatedField) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking whether given member field represent
a deserializable logical property; and if so, returns the
name of that property.
- findDeserializablePropertyName(AnnotatedField) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findDeserializablePropertyName(AnnotatedField) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findDeserializablePropertyName(AnnotatedField) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findDeserializablePropertyName(AnnotatedField) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findDeserializationContentType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for accessing additional narrowing type definition that a
method can have, to define more specific content type to use;
content refers to Map values and Collection/array elements.
- findDeserializationContentType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findDeserializationContentType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findDeserializationContentType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findDeserializationContentType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findDeserializationKeyType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for accessing additional narrowing type definition that a
method can have, to define more specific key type to use.
- findDeserializationKeyType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findDeserializationKeyType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findDeserializationKeyType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findDeserializationKeyType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findDeserializationType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for accessing annotated type definition that a
method can have, to be used as the type for serialization
instead of the runtime type.
- findDeserializationType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findDeserializationType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findDeserializationType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findDeserializationType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
JAXB does allow specifying (more) concrete class for
deserialization by using \@XmlElement annotation.
- findDeserializer(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for getting a deserializer definition on specified method
or field.
- findDeserializer(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findDeserializer(DeserializationConfig, DeserializerProvider, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
Helper method used to locate deserializers for properties the
type this deserializer handles contains (usually for properties of
bean types)
- findDeserializer(JavaType, DeserializationConfig, DeserializerProvider) - Method in class org.codehaus.jackson.map.ext.OptionalHandlerFactory
-
- findDeserializer(Annotated) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findDeserializer(Annotated) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findDeserializer(Annotated) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findDeserializerFromAnnotation(DeserializationConfig, Annotated, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
Helper method called to check if a class or method
has annotation that tells which class to use for deserialization.
- findEncoding(MediaType, MultivaluedMap<String, Object>) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
Helper method to use for determining desired output encoding.
- findEnum(String) - Method in class org.codehaus.jackson.map.util.EnumResolver
-
- findEnumDeserializer(Class<?>, DeserializationConfig, BeanDescription, BeanProperty) - Method in class org.codehaus.jackson.map.Deserializers.Base
-
- findEnumDeserializer(Class<?>, DeserializationConfig, BeanDescription, BeanProperty) - Method in interface org.codehaus.jackson.map.Deserializers
-
Method called to locate deserializer for specified
Enum
type.
- findEnumDeserializer(Class<?>, DeserializationConfig, BeanDescription, BeanProperty) - Method in class org.codehaus.jackson.map.module.SimpleDeserializers
-
- findEnumType(EnumSet<?>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Helper method that can be used to dynamically figure out
enumeration type of given
EnumSet
, without having
access to its declaration.
- findEnumType(EnumMap<?, ?>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Helper method that can be used to dynamically figure out
enumeration type of given
EnumSet
, without having
access to its declaration.
- findEnumType(Enum<?>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Helper method that can be used to dynamically figure out formal
enumeration type (class) for given enumeration.
- findEnumType(Class<?>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Helper method that can be used to dynamically figure out formal
enumeration type (class) for given class of an enumeration value.
- findEnumValue(Enum<?>) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for determining the String value to use for serializing
given enumeration entry; used when serializing enumerations
as Strings (the standard method).
- findEnumValue(Enum<?>) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findEnumValue(Enum<?>) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findEnumValue(Enum<?>) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findEnumValue(Enum<?>) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
!!! 12-Oct-2009, tatu: This is hideously slow implementation,
called potentially for every single enum value being
serialized.
- findExpectedRootName(DeserializationConfig, JavaType) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- findExpectedRootName(DeserializationConfig, JavaType) - Method in class org.codehaus.jackson.map.DeserializerProvider
-
Method that can be used to try find expected root name for given type
- findFactoryMethod(Class<?>...) - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Method that can be called to find if introspected class declares
a static "valueOf" factory method that returns an instance of
introspected type, given one of acceptable types.
- findFilter(Object) - Method in class org.codehaus.jackson.map.ser.FilterProvider
-
- findFilter(Object) - Method in class org.codehaus.jackson.map.ser.impl.SimpleFilterProvider
-
- findFilter(SerializerProvider) - Method in class org.codehaus.jackson.map.ser.std.BeanSerializerBase
-
Helper method used to locate filter that is needed, based on filter id
this serializer was constructed with.
- findFilterId(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for finding if annotated class has associated filter; and if so,
to return id that is used to locate filter.
- findFilterId(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findFilterId(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findFilterId(SerializationConfig, BasicBeanDescription) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Method called to find filter that is configured to be used with bean
serializer being built, if any.
- findFormat(InputStream) - Method in class org.codehaus.jackson.format.DataFormatDetector
-
Method to call to find format that content (accessible via given
InputStream
) given has, as per configuration of this detector
instance.
- findFormat(byte[]) - Method in class org.codehaus.jackson.format.DataFormatDetector
-
Method to call to find format that given content (full document)
has, as per configuration of this detector instance.
- findGettablePropertyName(AnnotatedMethod) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking whether given method has an annotation
that suggests property name associated with method that
may be a "getter".
- findGettablePropertyName(AnnotatedMethod) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findGettablePropertyName(AnnotatedMethod) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findGettablePropertyName(AnnotatedMethod) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findGettablePropertyName(AnnotatedMethod) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findGetters(VisibilityChecker<?>, Collection<String>) - Method in class org.codehaus.jackson.map.BeanDescription
-
- findGetters(VisibilityChecker<?>, Collection<String>) - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- findIgnoreUnknownProperties(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking whether an annotation indicates that all unknown properties
- findIgnoreUnknownProperties(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findIgnoreUnknownProperties(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findIgnoreUnknownProperties(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findIgnoreUnknownProperties(AnnotatedClass) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findInjectables() - Method in class org.codehaus.jackson.map.BeanDescription
-
- findInjectables() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- findInjectableValue(DeserializationContext, Object) - Method in class org.codehaus.jackson.map.deser.impl.CreatorProperty
-
Method that can be called to locate value to be injected for this
property, if it is configured for this.
- findInjectableValue(Object, BeanProperty, Object) - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- findInjectableValue(Object, BeanProperty, Object) - Method in class org.codehaus.jackson.map.DeserializationContext
-
- findInjectableValue(Object, DeserializationContext, BeanProperty, Object) - Method in class org.codehaus.jackson.map.InjectableValues
-
Method called to find value identified by id valueId
to
inject as value of specified property during deserialization, passing
POJO instance in which value will be injected if it is available
(will be available when injected via field or setter; not available
when injected via constructor or factory method argument).
- findInjectableValue(Object, DeserializationContext, BeanProperty, Object) - Method in class org.codehaus.jackson.map.InjectableValues.Std
-
- findInjectableValueId(AnnotatedMember) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method called to find out whether given member expectes a value
to be injected, and if so, what is the identifier of the value
to use during injection.
- findInjectableValueId(AnnotatedMember) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findInjectableValueId(AnnotatedMember) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findJsonValueMethod() - Method in class org.codehaus.jackson.map.BeanDescription
-
- findJsonValueMethod() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Method for locating the getter method that is annotated with
JsonValue
annotation,
if any.
- findKeyDeserializer(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for getting a deserializer definition for keys of
associated Map
property.
- findKeyDeserializer(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findKeyDeserializer(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- findKeyDeserializer(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerProvider
-
Method called to get hold of a deserializer to use for deserializing
keys for
Map
.
- findKeyDeserializer(Annotated) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findKeyDeserializer(Annotated) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findKeyDeserializer(JavaType, DeserializationConfig, BeanDescription, BeanProperty) - Method in interface org.codehaus.jackson.map.KeyDeserializers
-
- findKeyDeserializer(JavaType, DeserializationConfig, BeanDescription, BeanProperty) - Method in class org.codehaus.jackson.map.module.SimpleKeyDeserializers
-
- findKeyDeserializer(Annotated) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findKeySerializer(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for getting a serializer definition for keys of associated Map
property.
- findKeySerializer(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findKeySerializer(Annotated) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findKeySerializer(SerializationConfig, Annotated, BeanProperty) - Static method in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
- findKeySerializer(JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- findKeySerializer(JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.SerializerProvider
-
Method called to get the serializer to use for serializing
non-null Map keys.
- findMapDeserializer(MapType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty, KeyDeserializer, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.Deserializers.Base
-
- findMapDeserializer(MapType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty, KeyDeserializer, TypeDeserializer, JsonDeserializer<?>) - Method in interface org.codehaus.jackson.map.Deserializers
-
Method called to locate deserializer for specified
Map
type.
- findMapDeserializer(MapType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty, KeyDeserializer, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.module.SimpleDeserializers
-
- findMapLikeDeserializer(MapLikeType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty, KeyDeserializer, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.Deserializers.Base
-
- findMapLikeDeserializer(MapLikeType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty, KeyDeserializer, TypeDeserializer, JsonDeserializer<?>) - Method in interface org.codehaus.jackson.map.Deserializers
-
Method called to locate serializer for specified
"Map-like" type (one that acts
like
Map
but does not implement it).
- findMapLikeDeserializer(MapLikeType, DeserializationConfig, DeserializerProvider, BeanDescription, BeanProperty, KeyDeserializer, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.module.SimpleDeserializers
-
- findMapLikeSerializer(SerializationConfig, MapLikeType, BeanDescription, BeanProperty, JsonSerializer<Object>, TypeSerializer, JsonSerializer<Object>) - Method in class org.codehaus.jackson.map.module.SimpleSerializers
-
- findMapLikeSerializer(SerializationConfig, MapLikeType, BeanDescription, BeanProperty, JsonSerializer<Object>, TypeSerializer, JsonSerializer<Object>) - Method in class org.codehaus.jackson.map.Serializers.Base
-
- findMapLikeSerializer(SerializationConfig, MapLikeType, BeanDescription, BeanProperty, JsonSerializer<Object>, TypeSerializer, JsonSerializer<Object>) - Method in interface org.codehaus.jackson.map.Serializers
-
- findMapSerializer(SerializationConfig, MapType, BeanDescription, BeanProperty, JsonSerializer<Object>, TypeSerializer, JsonSerializer<Object>) - Method in class org.codehaus.jackson.map.module.SimpleSerializers
-
- findMapSerializer(SerializationConfig, MapType, BeanDescription, BeanProperty, JsonSerializer<Object>, TypeSerializer, JsonSerializer<Object>) - Method in class org.codehaus.jackson.map.Serializers.Base
-
- findMapSerializer(SerializationConfig, MapType, BeanDescription, BeanProperty, JsonSerializer<Object>, TypeSerializer, JsonSerializer<Object>) - Method in interface org.codehaus.jackson.map.Serializers
-
- findMethod(String, Class<?>[]) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- findMethod(String, Class<?>[]) - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- findMixInClassFor(Class<?>) - Method in interface org.codehaus.jackson.map.ClassIntrospector.MixInResolver
-
Method that will check if there are "mix-in" classes (with mix-in
annotations) for given class
- findMixInClassFor(Class<?>) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method that will check if there are "mix-in" classes (with mix-in
annotations) for given class
- findName(int) - Method in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Finds and returns name matching the specified symbol, if such
name already exists in the table.
- findName(int, int) - Method in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Finds and returns name matching the specified symbol, if such
name already exists in the table.
- findName(int[], int) - Method in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Finds and returns name matching the specified symbol, if such
name already exists in the table; or if not, creates name object,
adds to the table, and returns it.
- findNewName() - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
Method called to check whether property represented by this collector
should be renamed from the implicit name; and also verify that there
are no conflicting rename definitions.
- findParameterTypes(Class<?>, Class<?>) - Static method in class org.codehaus.jackson.map.type.TypeFactory
-
Deprecated.
- findParameterTypes(Class<?>, Class<?>, TypeBindings) - Static method in class org.codehaus.jackson.map.type.TypeFactory
-
Deprecated.
- findParameterTypes(JavaType, Class<?>) - Static method in class org.codehaus.jackson.map.type.TypeFactory
-
Deprecated.
- findParent(String) - Method in class org.codehaus.jackson.JsonNode
-
Method for finding a JSON Object that contains specified field,
within this node or its descendants.
- findParent(String) - Method in class org.codehaus.jackson.node.ArrayNode
-
- findParent(String) - Method in class org.codehaus.jackson.node.BaseJsonNode
-
- findParent(String) - Method in class org.codehaus.jackson.node.ContainerNode
-
- findParent(String) - Method in class org.codehaus.jackson.node.ObjectNode
-
- findParents(String) - Method in class org.codehaus.jackson.JsonNode
-
Method for finding a JSON Object that contains specified field,
within this node or its descendants.
- findParents(String, List<JsonNode>) - Method in class org.codehaus.jackson.JsonNode
-
- findParents(String, List<JsonNode>) - Method in class org.codehaus.jackson.node.ArrayNode
-
- findParents(String, List<JsonNode>) - Method in class org.codehaus.jackson.node.BaseJsonNode
-
- findParents(String, List<JsonNode>) - Method in class org.codehaus.jackson.node.ContainerNode
-
- findParents(String, List<JsonNode>) - Method in class org.codehaus.jackson.node.ObjectNode
-
- findPath(String) - Method in class org.codehaus.jackson.JsonNode
-
- findPath(String) - Method in class org.codehaus.jackson.node.BaseJsonNode
-
- findProperties() - Method in class org.codehaus.jackson.map.BeanDescription
-
- findProperties() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- findPropertiesToIgnore(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for finding list of properties to ignore for given class
(null is returned if not specified).
- findPropertiesToIgnore(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findPropertiesToIgnore(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findPropertiesToIgnore(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findPropertiesToIgnore(AnnotatedClass) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findPropertyContentTypeDeserializer(DeserializationConfig, JavaType, AnnotatedMember, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
Method called to find and create a type information deserializer for values of
given container (list, array, map) property, if one is needed.
- findPropertyContentTypeResolver(MapperConfig<?>, AnnotatedMember, JavaType) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking if given structured property entity (field or method that
has nominal value of Map, Collection or array type) has annotations
that indicate that specific type resolver is to be used for handling type
information of contained values.
- findPropertyContentTypeResolver(MapperConfig<?>, AnnotatedMember, JavaType) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findPropertyContentTypeResolver(MapperConfig<?>, AnnotatedMember, JavaType) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
Since 1.7, it is possible to use
JsonTypeInfo
from a property too.
- findPropertyContentTypeResolver(MapperConfig<?>, AnnotatedMember, JavaType) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findPropertyContentTypeSerializer(JavaType, SerializationConfig, AnnotatedMember, BeanProperty) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Method called to create a type information serializer for values of given
container property
if one is needed.
- findPropertyNameForParam(AnnotatedParameter) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking whether given set of annotations indicates
property name for associated parameter.
- findPropertyNameForParam(AnnotatedParameter) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findPropertyNameForParam(AnnotatedParameter) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findPropertyNameForParam(AnnotatedParameter) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findPropertyNameForParam(AnnotatedParameter) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findPropertyTypeDeserializer(DeserializationConfig, JavaType, AnnotatedMember, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
Method called to create a type information deserializer for values of
given non-container property, if one is needed.
- findPropertyTypeResolver(MapperConfig<?>, AnnotatedMember, JavaType) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking if given property entity (field or method) has annotations
that indicate that specific type resolver is to be used for handling instances.
- findPropertyTypeResolver(MapperConfig<?>, AnnotatedMember, JavaType) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findPropertyTypeResolver(MapperConfig<?>, AnnotatedMember, JavaType) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
Since 1.7, it is possible to use
JsonTypeInfo
from a property too.
- findPropertyTypeResolver(MapperConfig<?>, AnnotatedMember, JavaType) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findPropertyTypeSerializer(JavaType, SerializationConfig, AnnotatedMember, BeanProperty) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Method called to create a type information serializer for values of given
non-container property
if one is needed.
- findReferenceType(AnnotatedMember) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Note: defined as non-abstract to reduce fragility between
versions.
- findReferenceType(AnnotatedMember) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findReferenceType(AnnotatedMember) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findRootName(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for locating name used as "root name" (for use by
some serializers when outputting root-level object -- mostly
for XML compatibility purposes) for given class, if one
is defined.
- findRootName(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findRootName(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findRootName(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findRootName(JavaType, MapperConfig<?>) - Method in class org.codehaus.jackson.map.util.RootNameLookup
-
- findRootName(Class<?>, MapperConfig<?>) - Method in class org.codehaus.jackson.map.util.RootNameLookup
-
- findRootName(AnnotatedClass) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findSerializableFields(VisibilityChecker<?>, Collection<String>) - Method in class org.codehaus.jackson.map.BeanDescription
-
Deprecated.
Since 1.9 use the non-deprecated version
- findSerializableFields(VisibilityChecker<?>, Collection<String>) - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- findSerializablePropertyName(AnnotatedField) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking whether given member field represent
a serializable logical property; and if so, returns the
name of that property.
- findSerializablePropertyName(AnnotatedField) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findSerializablePropertyName(AnnotatedField) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findSerializablePropertyName(AnnotatedField) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findSerializablePropertyName(AnnotatedField) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findSerializationContentType(Annotated, JavaType) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for finding possible widening type definition that a property
value can have, to define less specific key type to use for serialization.
- findSerializationContentType(Annotated, JavaType) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findSerializationContentType(Annotated, JavaType) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findSerializationInclusion(Annotated, JsonSerialize.Inclusion) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking whether given annotated entity (class, method,
field) defines which Bean/Map properties are to be included in
serialization.
- findSerializationInclusion(Annotated, JsonSerialize.Inclusion) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findSerializationInclusion(JsonSerialize.Inclusion) - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Method for determining whether null properties should be written
out for a Bean of introspected type.
- findSerializationInclusion(Annotated, JsonSerialize.Inclusion) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findSerializationInclusion(Annotated, JsonSerialize.Inclusion) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
Implementation of this method is slightly tricky, given that JAXB defaults differ
from Jackson defaults.
- findSerializationKeyType(Annotated, JavaType) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for finding possible widening type definition that a property
value can have, to define less specific key type to use for serialization.
- findSerializationKeyType(Annotated, JavaType) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findSerializationKeyType(Annotated, JavaType) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findSerializationPropertyOrder(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for accessing defined property serialization order (which may be
partial).
- findSerializationPropertyOrder(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findSerializationPropertyOrder(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findSerializationPropertyOrder(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findSerializationPropertyOrder(AnnotatedClass) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findSerializationSortAlphabetically(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking whether an annotation indicates that serialized properties
for which no explicit is defined should be alphabetically (lexicograpically)
ordered
- findSerializationSortAlphabetically(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
Method for checking whether an annotation indicates that serialized properties
for which no explicit is defined should be alphabetically (lexicograpically)
ordered
- findSerializationSortAlphabetically(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findSerializationSortAlphabetically(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findSerializationSortAlphabetically(AnnotatedClass) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findSerializationType(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for accessing annotated type definition that a
method/field can have, to be used as the type for serialization
instead of the runtime type.
- findSerializationType(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findSerializationType(Annotated) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findSerializationType(Annotated) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findSerializationType(Annotated, boolean, JavaType) - Method in class org.codehaus.jackson.map.ser.PropertyBuilder
-
Method that will try to determine statically defined type of property
being serialized, based on annotations (for overrides), and alternatively
declared type (if static typing for serialization is enabled).
- findSerializationType(Annotated) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findSerializationTyping(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for accessing declared typing mode annotated (if any).
- findSerializationTyping(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findSerializationTyping(Annotated) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findSerializationTyping(Annotated) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findSerializationTyping(Annotated) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findSerializationViews(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking if annotated serializable property (represented by
field or getter method) has definitions for views it is to be included
in.
- findSerializationViews(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findSerializationViews(Annotated) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findSerializationViews(Annotated) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findSerializationViews(Annotated) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findSerializer(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for getting a serializer definition on specified method
or field.
- findSerializer(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findSerializer(SerializationConfig, JavaType) - Method in class org.codehaus.jackson.map.ext.OptionalHandlerFactory
-
- findSerializer(Annotated) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findSerializer(Annotated) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findSerializer(SerializationConfig, JavaType, BeanDescription, BeanProperty) - Method in class org.codehaus.jackson.map.module.SimpleSerializers
-
- findSerializer(SerializationConfig, JavaType, BeanDescription, BeanProperty) - Method in class org.codehaus.jackson.map.Serializers.Base
-
- findSerializer(SerializationConfig, JavaType, BeanDescription, BeanProperty) - Method in interface org.codehaus.jackson.map.Serializers
-
Method called by serialization framework first time a serializer is needed for
specified type, which is not of a container type (for which other methods are
called).
- findSerializer(Annotated) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findSerializerByAddonType(SerializationConfig, JavaType, BasicBeanDescription, BeanProperty, boolean) - Method in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
Reflection-based serialized find method, which checks if
given class implements one of recognized "add-on" interfaces.
- findSerializerByLookup(JavaType, SerializationConfig, BasicBeanDescription, BeanProperty, boolean) - Method in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
Method that will use fast lookup (and identity comparison) methods to
see if we know serializer to use for given type.
- findSerializerByPrimaryType(JavaType, SerializationConfig, BasicBeanDescription, BeanProperty, boolean) - Method in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
Method for checking if we can determine serializer to use based on set of
known primary types, checking for set of known base types (exact matches
having been compared against with findSerializerByLookup
).
- findSerializerFromAnnotation(SerializationConfig, Annotated, BeanProperty) - Method in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
Helper method called to check if a class or method
has an annotation
(@link org.codehaus.jackson.map.ser.JsonSerialize#using)
that tells the class to use for serialization.
- findSettablePropertyName(AnnotatedMethod) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking whether given method has an annotation
that suggests property name associated with method that
may be a "setter".
- findSettablePropertyName(AnnotatedMethod) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findSettablePropertyName(AnnotatedMethod) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findSettablePropertyName(AnnotatedMethod) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- findSettablePropertyName(AnnotatedMethod) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findSetters(VisibilityChecker<?>) - Method in class org.codehaus.jackson.map.BeanDescription
-
- findSetters(VisibilityChecker<?>) - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- findSingleArgConstructor(Class<?>...) - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Method that can be called to locate a single-arg constructor that
takes specified exact type (will not accept supertype constructors)
- findStdBeanDeserializer(DeserializationConfig, DeserializerProvider, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
Method called by
BeanDeserializerFactory
to see if there might be a standard
deserializer registered for given type.
- findStringBasedKeyDeserializer(DeserializationConfig, JavaType) - Static method in class org.codehaus.jackson.map.deser.std.StdKeyDeserializers
-
- findSubtypes(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for locating annotation-specified subtypes related to annotated
entity (class, method, field).
- findSubtypes(Annotated) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findSubtypes(Annotated) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findSubtypes(Annotated) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findSuperTypes(Class<?>, Class<?>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Method that will find all sub-classes and implemented interfaces
of a given class or interface.
- findSuperTypes(Class<?>, Class<?>, List<Class<?>>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
- findSuperTypes(Class<?>, Class<?>) - Static method in class org.codehaus.jackson.mrbean.BeanUtil
-
Method that will find all sub-classes and implemented interfaces
of a given class or interface.
- findSuperTypes(Class<?>, Class<?>, List<Class<?>>) - Static method in class org.codehaus.jackson.mrbean.BeanUtil
-
- findSymbol(char[], int, int, int) - Method in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
- findTreeNodeDeserializer(Class<? extends JsonNode>, DeserializationConfig, BeanProperty) - Method in class org.codehaus.jackson.map.Deserializers.Base
-
- findTreeNodeDeserializer(Class<? extends JsonNode>, DeserializationConfig, BeanProperty) - Method in interface org.codehaus.jackson.map.Deserializers
-
Method called to locate deserializer for specified JSON tree node type.
- findTreeNodeDeserializer(Class<? extends JsonNode>, DeserializationConfig, BeanProperty) - Method in class org.codehaus.jackson.map.module.SimpleDeserializers
-
- findType(String) - Method in class org.codehaus.jackson.map.type.TypeBindings
-
- findTypeDeserializer(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- findTypeDeserializer(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
Method called to find and create a type information deserializer for given base type,
if one is needed.
- findTypedValueDeserializer(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- findTypedValueDeserializer(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerProvider
-
Method called to locate deserializer for given type, as well as matching
type deserializer (if one is needed); and if type deserializer is needed,
construct a "wrapped" deserializer that can extract and use type information
for calling actual deserializer.
- findTypedValueSerializer(Class<?>, boolean, BeanProperty) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- findTypedValueSerializer(JavaType, boolean, BeanProperty) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- findTypedValueSerializer(Class<?>, boolean, BeanProperty) - Method in class org.codehaus.jackson.map.SerializerProvider
-
Method called to locate regular serializer, matching type serializer,
and if both found, wrap them in a serializer that calls both in correct
sequence.
- findTypedValueSerializer(JavaType, boolean, BeanProperty) - Method in class org.codehaus.jackson.map.SerializerProvider
-
Method called to locate regular serializer, matching type serializer,
and if both found, wrap them in a serializer that calls both in correct
sequence.
- findTypedValueSerializer(Class<?>, boolean) - Method in class org.codehaus.jackson.map.SerializerProvider
-
Deprecated.
As of version 1.7, use version that exposes property object
instead of just its type (needed for contextual serializers)
- findTypedValueSerializer(JavaType, boolean) - Method in class org.codehaus.jackson.map.SerializerProvider
-
Deprecated.
As of version 1.7, use version that exposes property object
instead of just its type (needed for contextual serializers)
- findTypeMapping(DeserializationConfig, JavaType) - Method in class org.codehaus.jackson.map.AbstractTypeResolver
-
Try to locate a subtype for given abstract type, to either resolve
to a concrete type, or at least to a more-specific (and hopefully supported)
abstract type, one which may have registered deserializers.
- findTypeMapping(DeserializationConfig, JavaType) - Method in class org.codehaus.jackson.map.module.SimpleAbstractTypeResolver
-
- findTypeName(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking if specified type has explicit name.
- findTypeName(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findTypeName(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findTypeName(AnnotatedClass) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findTypeParameters(JavaType, Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Method that is to figure out actual type parameters that given
class binds to generic types defined by given (generic)
interface or class.
- findTypeParameters(Class<?>, Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- findTypeParameters(Class<?>, Class<?>, TypeBindings) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- findTypeResolver(MapperConfig<?>, AnnotatedClass, JavaType) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking if given class has annotations that indicate
that specific type resolver is to be used for handling instances.
- findTypeResolver(MapperConfig<?>, AnnotatedClass, JavaType) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findTypeResolver(MapperConfig<?>, AnnotatedClass, JavaType) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findTypeResolver(MapperConfig<?>, AnnotatedClass, JavaType) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- findValue(String) - Method in class org.codehaus.jackson.JsonNode
-
Method for finding a JSON Object field with specified name in this
node or its child nodes, and returning value it has.
- findValue(DeserializationContext, Object) - Method in class org.codehaus.jackson.map.deser.impl.ValueInjector
-
- findValue(String) - Method in class org.codehaus.jackson.node.ArrayNode
-
- findValue(String) - Method in class org.codehaus.jackson.node.BaseJsonNode
-
- findValue(String) - Method in class org.codehaus.jackson.node.ContainerNode
-
- findValue(String) - Method in class org.codehaus.jackson.node.ObjectNode
-
- findValueDeserializer(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- findValueDeserializer(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.DeserializerProvider
-
Method called to get hold of a deserializer for a value of given type;
or if no such deserializer can be found, a default handler (which
may do a best-effort generic serialization or just simply
throw an exception when invoked).
- findValueInstantiator(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method getting
ValueInstantiator
to use for given
type (class): return value can either be an instance of
instantiator, or class of instantiator to create.
- findValueInstantiator(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- findValueInstantiator(DeserializationConfig, BasicBeanDescription) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- findValueInstantiator(DeserializationConfig, BasicBeanDescription) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Value instantiator is created both based on creator annotations,
and on optional externally provided instantiators (registered through
module interface).
- findValueInstantiator(DeserializationConfig, BeanDescription, ValueInstantiator) - Method in class org.codehaus.jackson.map.deser.ValueInstantiators.Base
-
- findValueInstantiator(DeserializationConfig, BeanDescription, ValueInstantiator) - Method in interface org.codehaus.jackson.map.deser.ValueInstantiators
-
Method called to find the
ValueInstantiator
to use for creating
instances of specified type during deserialization.
- findValueInstantiator(DeserializationConfig, BasicBeanDescription) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
Method that is to find all creators (constructors, factory methods)
for the bean type to deserialize.
- findValueInstantiator(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- findValueInstantiator(DeserializationConfig, BeanDescription, ValueInstantiator) - Method in class org.codehaus.jackson.map.module.SimpleValueInstantiators
-
- findValues(String) - Method in class org.codehaus.jackson.JsonNode
-
Method for finding JSON Object fields with specified name, and returning
found ones as a List.
- findValues(String, List<JsonNode>) - Method in class org.codehaus.jackson.JsonNode
-
- findValues(String, List<JsonNode>) - Method in class org.codehaus.jackson.node.ArrayNode
-
- findValues(String, List<JsonNode>) - Method in class org.codehaus.jackson.node.BaseJsonNode
-
- findValues(String, List<JsonNode>) - Method in class org.codehaus.jackson.node.ContainerNode
-
- findValues(String, List<JsonNode>) - Method in class org.codehaus.jackson.node.ObjectNode
-
- findValuesAsText(String) - Method in class org.codehaus.jackson.JsonNode
-
- findValuesAsText(String, List<String>) - Method in class org.codehaus.jackson.JsonNode
-
- findValuesAsText(String, List<String>) - Method in class org.codehaus.jackson.node.ArrayNode
-
- findValuesAsText(String, List<String>) - Method in class org.codehaus.jackson.node.BaseJsonNode
-
- findValuesAsText(String, List<String>) - Method in class org.codehaus.jackson.node.ContainerNode
-
- findValuesAsText(String, List<String>) - Method in class org.codehaus.jackson.node.ObjectNode
-
- findValueSerializer(Class<?>, BeanProperty) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- findValueSerializer(JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
This variant was added in 1.5, to allow for efficient access using full
structured types, not just classes.
- findValueSerializer(Class<?>, BeanProperty) - Method in class org.codehaus.jackson.map.SerializerProvider
-
Method called to get hold of a serializer for a value of given type;
or if no such serializer can be found, a default handler (which
may do a best-effort generic serialization or just simply
throw an exception when invoked).
- findValueSerializer(JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.SerializerProvider
-
- findValueSerializer(Class<?>) - Method in class org.codehaus.jackson.map.SerializerProvider
-
Deprecated.
As of version 1.7, use version that exposes property object
instead of just its type (needed for contextual serializers)
- findValueSerializer(JavaType) - Method in class org.codehaus.jackson.map.SerializerProvider
-
Deprecated.
As of version 1.7, use version that exposes property object
instead of just its type (needed for contextual serializers)
- finishCurrentSegment() - Method in class org.codehaus.jackson.util.ByteArrayBuilder
-
Method called when the current segment buffer is full; will
append to current contents, allocate a new segment buffer
and return it
- finishCurrentSegment() - Method in class org.codehaus.jackson.util.TextBuffer
-
- fixAccess() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMember
-
- flush() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- flush() - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- flush() - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- flush() - Method in class org.codehaus.jackson.io.SegmentedStringWriter
-
- flush() - Method in class org.codehaus.jackson.io.UTF8Writer
-
- flush() - Method in class org.codehaus.jackson.JsonGenerator
-
Method called to flush any buffered content to the underlying
target (output stream, writer), and to flush the target itself
as well.
- flush() - Method in class org.codehaus.jackson.map.ser.impl.SerializerCache
-
Method called by StdSerializerProvider#flushCachedSerializers() to
clear all cached serializers
- flush() - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- flush() - Method in class org.codehaus.jackson.util.ByteArrayBuilder
-
- flush() - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- flush() - Method in class org.codehaus.jackson.util.TokenBuffer
-
- flushCachedDeserializers() - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- flushCachedDeserializers() - Method in class org.codehaus.jackson.map.DeserializerProvider
-
- flushCachedSerializers() - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- flushCachedSerializers() - Method in class org.codehaus.jackson.map.SerializerProvider
-
Method that will drop all serializers currently cached by this provider.
- forcedNarrowBy(Class<?>) - Method in class org.codehaus.jackson.type.JavaType
-
- forClassAnnotations(MapperConfig<?>, JavaType, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.ClassIntrospector
-
Factory method that constructs an introspector that only has
information regarding annotations class itself (or its supertypes) has,
but nothing on methods or constructors.
- forClassAnnotations(MapperConfig<?>, Class<?>, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.ClassIntrospector
-
Deprecated.
since 1.9, use variant that takes JavaType
- forClassAnnotations(MapperConfig<?>, JavaType, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
- forCreation(DeserializationConfig, JavaType, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.ClassIntrospector
-
Factory method that constructs an introspector that has
information necessary for creating instances of given
class ("creator"), as well as class annotations, but
no information on member methods
- forCreation(DeserializationConfig, JavaType, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
- forDeserialization(DeserializationConfig, JavaType, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.ClassIntrospector
-
Factory method that constructs an introspector that has all
information needed for deserialization purposes.
- forDeserialization(POJOPropertiesCollector) - Static method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Factory method to use for constructing an instance to use for building
deserializers.
- forDeserialization(DeserializationConfig, JavaType, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
- forDirectClassAnnotations(MapperConfig<?>, JavaType, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.ClassIntrospector
-
Factory method that constructs an introspector that only has
information regarding annotations class itself has (but NOT including
its supertypes), but nothing on methods or constructors.
- forDirectClassAnnotations(MapperConfig<?>, Class<?>, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.ClassIntrospector
-
Deprecated.
since 1.9, use variant that takes JavaType
- forDirectClassAnnotations(MapperConfig<?>, JavaType, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
- format(Date, StringBuffer, FieldPosition) - Method in class org.codehaus.jackson.map.util.ISO8601DateFormat
-
- format(Date) - Static method in class org.codehaus.jackson.map.util.ISO8601Utils
-
Format a date into 'yyyy-MM-ddThh:mm:ssZ' (GMT timezone, no milliseconds precision)
- format(Date, boolean) - Static method in class org.codehaus.jackson.map.util.ISO8601Utils
-
Format a date into 'yyyy-MM-ddThh:mm:ss[.sss]Z' (GMT timezone)
- format(Date, boolean, TimeZone) - Static method in class org.codehaus.jackson.map.util.ISO8601Utils
-
Format date into yyyy-MM-ddThh:mm:ss[.sss][Z|[+-]hh:mm]
- format(Date, StringBuffer, FieldPosition) - Method in class org.codehaus.jackson.map.util.StdDateFormat
-
- FORMAT_NAME_JSON - Static variable in class org.codehaus.jackson.JsonFactory
-
- FORMAT_NAME_SMILE - Static variable in class org.codehaus.jackson.smile.SmileFactory
-
Name used to identify Smile format.
- FormatSchema - Interface in org.codehaus.jackson
-
Simple tag interface used to mark schema objects that are used by some
JsonParser
and
JsonGenerator
implementations to further
specify structure of expected format.
- forOtherUse(MapperConfig<?>, JavaType, AnnotatedClass) - Static method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Factory method to use for constructing an instance to use for purposes
other than building serializers or deserializers; will only have information
on class, not on properties.
- forSerialization(SerializationConfig, JavaType, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.ClassIntrospector
-
Factory method that constructs an introspector that has all
information needed for serialization purposes.
- forSerialization(POJOPropertiesCollector) - Static method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Factory method to use for constructing an instance to use for building
serializers.
- forSerialization(SerializationConfig, JavaType, ClassIntrospector.MixInResolver) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
- from(JsonParser, Object, String) - Static method in exception org.codehaus.jackson.map.exc.UnrecognizedPropertyException
-
- from(JsonParser, String) - Static method in exception org.codehaus.jackson.map.JsonMappingException
-
- from(JsonParser, String, Throwable) - Static method in exception org.codehaus.jackson.map.JsonMappingException
-
- from(HashMap<SerializerCache.TypeKey, JsonSerializer<Object>>) - Static method in class org.codehaus.jackson.map.ser.impl.ReadOnlyClassToSerializerMap
-
Factory method for creating the "blueprint" lookup map.
- fromAnnotations(Class<?>) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
Deprecated.
Since 1.9, it is preferably to explicitly configure
instances; this method also modifies existing instance which is
against immutable design goals of this class.
- fromAnnotations(Class<?>) - Method in class org.codehaus.jackson.map.MapperConfig
-
Deprecated.
Since 1.9, it is preferably to explicitly configure
instances; this method also modifies existing instance which is
against immutable design goals of this class.
- fromAnnotations(Class<?>) - Method in class org.codehaus.jackson.map.SerializationConfig
-
Deprecated.
Since 1.9, it is preferably to explicitly configure
instances; this method also modifies existing instance which is
against immutable design goals of this class.
- fromCanonical(String) - Static method in class org.codehaus.jackson.map.type.TypeFactory
-
- fromClass(Class<?>) - Static method in class org.codehaus.jackson.map.type.TypeFactory
-
- fromNode(Document, JsonNode) - Method in class org.codehaus.jackson.xc.DomElementJsonDeserializer
-
- FromStringDeserializer<T> - Class in org.codehaus.jackson.map.deser
-
- FromStringDeserializer(Class<?>) - Constructor for class org.codehaus.jackson.map.deser.FromStringDeserializer
-
Deprecated.
- FromStringDeserializer<T> - Class in org.codehaus.jackson.map.deser.std
-
Base class for simple deserializer which only accept JSON String
values as the source.
- FromStringDeserializer(Class<?>) - Constructor for class org.codehaus.jackson.map.deser.std.FromStringDeserializer
-
- FromStringDeserializer.CharsetDeserializer - Class in org.codehaus.jackson.map.deser.std
-
- FromStringDeserializer.CharsetDeserializer() - Constructor for class org.codehaus.jackson.map.deser.std.FromStringDeserializer.CharsetDeserializer
-
- FromStringDeserializer.CurrencyDeserializer - Class in org.codehaus.jackson.map.deser.std
-
- FromStringDeserializer.CurrencyDeserializer() - Constructor for class org.codehaus.jackson.map.deser.std.FromStringDeserializer.CurrencyDeserializer
-
- FromStringDeserializer.InetAddressDeserializer - Class in org.codehaus.jackson.map.deser.std
-
As per [JACKSON-484], also need special handling for InetAddress...
- FromStringDeserializer.InetAddressDeserializer() - Constructor for class org.codehaus.jackson.map.deser.std.FromStringDeserializer.InetAddressDeserializer
-
- FromStringDeserializer.LocaleDeserializer - Class in org.codehaus.jackson.map.deser.std
-
Kept protected as it's not meant to be extensible at this point
- FromStringDeserializer.LocaleDeserializer() - Constructor for class org.codehaus.jackson.map.deser.std.FromStringDeserializer.LocaleDeserializer
-
- FromStringDeserializer.PatternDeserializer - Class in org.codehaus.jackson.map.deser.std
-
- FromStringDeserializer.PatternDeserializer() - Constructor for class org.codehaus.jackson.map.deser.std.FromStringDeserializer.PatternDeserializer
-
- FromStringDeserializer.TimeZoneDeserializer - Class in org.codehaus.jackson.map.deser.std
-
As per [JACKSON-522], also need special handling for InetAddress...
- FromStringDeserializer.TimeZoneDeserializer() - Constructor for class org.codehaus.jackson.map.deser.std.FromStringDeserializer.TimeZoneDeserializer
-
- FromStringDeserializer.URIDeserializer - Class in org.codehaus.jackson.map.deser.std
-
- FromStringDeserializer.URIDeserializer() - Constructor for class org.codehaus.jackson.map.deser.std.FromStringDeserializer.URIDeserializer
-
- FromStringDeserializer.URLDeserializer - Class in org.codehaus.jackson.map.deser.std
-
- FromStringDeserializer.URLDeserializer() - Constructor for class org.codehaus.jackson.map.deser.std.FromStringDeserializer.URLDeserializer
-
- FromStringDeserializer.UUIDDeserializer - Class in org.codehaus.jackson.map.deser.std
-
- FromStringDeserializer.UUIDDeserializer() - Constructor for class org.codehaus.jackson.map.deser.std.FromStringDeserializer.UUIDDeserializer
-
- fromType(Type) - Static method in class org.codehaus.jackson.map.type.TypeFactory
-
- fromTypeReference(TypeReference<?>) - Static method in class org.codehaus.jackson.map.type.TypeFactory
-
- generateJsonSchema(Class<?>) - Method in class org.codehaus.jackson.map.ObjectMapper
-
- generateJsonSchema(Class<?>, SerializationConfig) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Generate
Json-schema
instance for specified class, using specific
serialization configuration
- generateJsonSchema(Class<?>, SerializationConfig, SerializerFactory) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- generateJsonSchema(Class<?>, SerializationConfig, SerializerFactory) - Method in class org.codehaus.jackson.map.SerializerProvider
-
- get(int) - Method in class org.codehaus.jackson.JsonNode
-
Method for accessing value of the specified element of
an array node.
- get(String) - Method in class org.codehaus.jackson.JsonNode
-
Method for accessing value of the specified field of
an object node.
- get(Class<A>) - Method in class org.codehaus.jackson.map.introspect.AnnotationMap
-
- get(Object) - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Method that can be used to access value of the property this
Object describes, from given bean instance.
- get(Class<A>) - Method in interface org.codehaus.jackson.map.util.Annotations
-
Main access method used to find value for given annotation.
- get(int) - Method in class org.codehaus.jackson.node.ArrayNode
-
- get(String) - Method in class org.codehaus.jackson.node.ArrayNode
-
- get(int) - Method in class org.codehaus.jackson.node.ContainerNode
-
- get(String) - Method in class org.codehaus.jackson.node.ContainerNode
-
- get(int) - Method in class org.codehaus.jackson.node.ObjectNode
-
- get(String) - Method in class org.codehaus.jackson.node.ObjectNode
-
- get(int) - Method in class org.codehaus.jackson.util.TokenBuffer.Segment
-
- get7BitOutputEscapes() - Static method in class org.codehaus.jackson.util.CharTypes
-
Accessor for getting a read-only encoding table for first 128 Unicode
code points (single-byte UTF-8 characters).
- getAccessor() - Method in class org.codehaus.jackson.map.BeanPropertyDefinition
-
Method used to find accessor (getter, field to access) to use for accessing
value of the property.
- getAccessor() - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- getAll() - Static method in class org.codehaus.jackson.map.deser.std.PrimitiveArrayDeserializers
-
- getAllAnnotations() - Method in class org.codehaus.jackson.map.introspect.Annotated
-
- getAllAnnotations() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getAllAnnotations() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMember
-
- getAndClear() - Method in class org.codehaus.jackson.io.SegmentedStringWriter
-
Main access method that will construct a String that contains
all the contents, release all internal buffers we may have,
and return result String.
- getAndSerialize(Object, JsonGenerator, SerializerProvider) - Method in class org.codehaus.jackson.map.ser.AnyGetterWriter
-
- getAnnotated() - Method in class org.codehaus.jackson.map.introspect.Annotated
-
Method that can be used to find actual JDK element that this instance
represents.
- getAnnotated() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getAnnotated() - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- getAnnotated() - Method in class org.codehaus.jackson.map.introspect.AnnotatedField
-
- getAnnotated() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- getAnnotated() - Method in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
Since there is no matching JDK element, this method will
always return null
- getAnnotation(Class<A>) - Method in interface org.codehaus.jackson.map.BeanProperty
-
Method for finding annotation associated with this property;
meaning annotation associated with one of entities used to
access property.
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.BeanProperty.Std
-
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.deser.impl.CreatorProperty
-
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.FieldProperty
-
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.InnerClassProperty
-
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.ManagedReferenceProperty
-
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.MethodProperty
-
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.SetterlessProperty
-
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.introspect.Annotated
-
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.introspect.AnnotatedField
-
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
Accessor for annotations; all annotations associated with parameters
are properly passed and accessible.
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
- getAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- getAnnotationCount() - Method in class org.codehaus.jackson.map.introspect.AnnotatedField
-
- getAnnotationCount() - Method in class org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
- getAnnotationIntrospector() - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- getAnnotationIntrospector() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- getAnnotationIntrospector() - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- getAnnotationIntrospector() - Method in class org.codehaus.jackson.map.MapperConfig
-
- getAnnotationIntrospector() - Method in class org.codehaus.jackson.map.SerializationConfig
-
- getAnnotations() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getAnyGetterMethod() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- getAnySetterMethod() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- getArrayBuilders() - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- getArrayBuilders() - Method in class org.codehaus.jackson.map.DeserializationContext
-
Method for accessing object useful for building arrays of
primitive types (such as int[]).
- getArrayComparator(Object) - Static method in class org.codehaus.jackson.map.util.Comparators
-
Helper method used for constructing simple value comparator used for
comparing arrays for content equality.
- getBase64Variant() - Method in class org.codehaus.jackson.map.DeserializationConfig
-
Method called during deserialization if Base64 encoded content
needs to be decoded.
- getBase64Variant() - Method in class org.codehaus.jackson.map.DeserializationContext
-
Convenience method for accessing the default Base64 encoding
used for decoding base64 encoded binary content.
- getBeanClass() - Method in class org.codehaus.jackson.map.BeanDescription
-
- getBeanClass() - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
- getBeanDescription() - Method in class org.codehaus.jackson.map.ser.BeanSerializerBuilder
-
- getBigIntegerValue() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- getBigIntegerValue() - Method in class org.codehaus.jackson.JsonNode
-
- getBigIntegerValue() - Method in class org.codehaus.jackson.JsonParser
-
Numeric accessor that can be called when the current
token is of type
JsonToken.VALUE_NUMBER_INT
and
it can not be used as a Java long primitive type due to its
magnitude.
- getBigIntegerValue() - Method in class org.codehaus.jackson.node.BigIntegerNode
-
- getBigIntegerValue() - Method in class org.codehaus.jackson.node.DecimalNode
-
- getBigIntegerValue() - Method in class org.codehaus.jackson.node.DoubleNode
-
- getBigIntegerValue() - Method in class org.codehaus.jackson.node.IntNode
-
- getBigIntegerValue() - Method in class org.codehaus.jackson.node.LongNode
-
- getBigIntegerValue() - Method in class org.codehaus.jackson.node.NumericNode
-
- getBigIntegerValue() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getBigIntegerValue() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getBigIntegerValue() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getBinaryValue(Base64Variant) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- getBinaryValue(Base64Variant) - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- getBinaryValue(Base64Variant) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- getBinaryValue() - Method in class org.codehaus.jackson.JsonNode
-
Method to use for accessing binary content of binary nodes (nodes
for which
JsonNode.isBinary()
returns true); or for Text Nodes
(ones for which
JsonNode.getTextValue()
returns non-null value),
to read decoded base64 data.
- getBinaryValue(Base64Variant) - Method in class org.codehaus.jackson.JsonParser
-
Method that can be used to read (and consume -- results
may not be accessible using other methods after the call)
base64-encoded binary data
included in the current textual JSON value.
- getBinaryValue() - Method in class org.codehaus.jackson.JsonParser
-
- getBinaryValue() - Method in class org.codehaus.jackson.node.BinaryNode
-
Note: caller is not to modify returned array in any way, since
it is not a copy but reference to the underlying byte array.
- getBinaryValue() - Method in class org.codehaus.jackson.node.POJONode
-
- getBinaryValue(Base64Variant) - Method in class org.codehaus.jackson.node.TextNode
-
Method for accessing textual contents assuming they were
base64 encoded; if so, they are decoded and resulting binary
data is returned.
- getBinaryValue() - Method in class org.codehaus.jackson.node.TextNode
-
- getBinaryValue(Base64Variant) - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getBinaryValue(Base64Variant) - Method in class org.codehaus.jackson.smile.SmileParser
-
- getBinaryValue(Base64Variant) - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getBinaryValue(Base64Variant) - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getBindingCount() - Method in class org.codehaus.jackson.map.type.TypeBindings
-
- getBlueprintISO8601Format() - Static method in class org.codehaus.jackson.map.util.StdDateFormat
-
Method for getting the globally shared DateFormat instance
that uses GMT timezone and can handle simple ISO-8601
compliant date format.
- getBlueprintRFC1123Format() - Static method in class org.codehaus.jackson.map.util.StdDateFormat
-
Method for getting the globally shared DateFormat instance
that uses GMT timezone and can handle RFC-1123
compliant date format.
- getBooleanBuilder() - Method in class org.codehaus.jackson.map.util.ArrayBuilders
-
- getBooleanValue() - Method in class org.codehaus.jackson.JsonNode
-
Method to use for accessing JSON boolean values (value
literals 'true' and 'false').
- getBooleanValue() - Method in class org.codehaus.jackson.JsonParser
-
- getBooleanValue() - Method in class org.codehaus.jackson.node.BooleanNode
-
- getBooleanValue() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getByteBuilder() - Method in class org.codehaus.jackson.map.util.ArrayBuilders
-
- getByteOffset() - Method in class org.codehaus.jackson.JsonLocation
-
- getByteValue() - Method in class org.codehaus.jackson.JsonParser
-
Numeric accessor that can be called when the current
token is of type
JsonToken.VALUE_NUMBER_INT
and
it can be expressed as a value of Java byte primitive type.
- getByteValue() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getCharacterEscapes() - Method in class org.codehaus.jackson.impl.Utf8Generator
-
Method for accessing custom escapes factory uses for
JsonGenerator
s
it creates.
- getCharacterEscapes() - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
Method for accessing custom escapes factory uses for
JsonGenerator
s
it creates.
- getCharacterEscapes() - Method in class org.codehaus.jackson.JsonFactory
-
Method for accessing custom escapes factory uses for
JsonGenerator
s
it creates.
- getCharacterEscapes() - Method in class org.codehaus.jackson.JsonGenerator
-
Method for accessing custom escapes factory uses for
JsonGenerator
s
it creates.
- getCharOffset() - Method in class org.codehaus.jackson.JsonLocation
-
- getClassAnnotations() - Method in class org.codehaus.jackson.map.BeanDescription
-
Method for accessing collection of annotations the bean
class has.
- getClassAnnotations() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- getClassAnnotations() - Method in class org.codehaus.jackson.map.ser.PropertyBuilder
-
- getClassDef() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- getClassDescription(Object) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Helper method used to construct appropriate description
when passed either type (Class) or an instance; in latter
case, class of instance is to be used.
- getClassInfo() - Method in class org.codehaus.jackson.map.BeanDescription
-
- getClassInfo() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- getClassIntrospector() - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- getClassIntrospector() - Method in class org.codehaus.jackson.map.MapperConfig
-
- getCodec() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- getCodec() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- getCodec() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- getCodec() - Method in class org.codehaus.jackson.JsonFactory
-
- getCodec() - Method in class org.codehaus.jackson.JsonGenerator
-
- getCodec() - Method in class org.codehaus.jackson.JsonParser
-
Accessor for
ObjectCodec
associated with this
parser, if any.
- getCodec() - Method in class org.codehaus.jackson.map.MappingJsonFactory
-
We'll override the method to return more specific type; co-variance
helps here
- getCodec() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getCodec() - Method in class org.codehaus.jackson.smile.SmileParser
-
- getCodec() - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- getCodec() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getCodec() - Method in class org.codehaus.jackson.util.TokenBuffer
-
- getCodec() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getColumnNr() - Method in class org.codehaus.jackson.JsonLocation
-
- getConfig() - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- getConfig() - Method in class org.codehaus.jackson.map.DeserializationContext
-
Method for accessing configuration setting object for
currently active deserialization.
- getConfig() - Method in class org.codehaus.jackson.map.DeserializerFactory
-
- getConfig() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- getConfig() - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
- getConfig() - Method in class org.codehaus.jackson.map.SerializerFactory
-
- getConfig() - Method in class org.codehaus.jackson.map.SerializerProvider
-
Method for accessing configuration for the serialization processing.
- getConfiguredMapper() - Method in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
Method that locates, configures and returns
ObjectMapper
to use
- getConstructorParameter() - Method in class org.codehaus.jackson.map.BeanPropertyDefinition
-
- getConstructorParameter() - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- getConstructors() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getConstructors() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- getContainerValueChecker(String, JavaType) - Method in class org.codehaus.jackson.map.ser.PropertyBuilder
-
Helper method called to see if we need a comparator Object to check if values
of a container (Collection, array) property should be suppressed.
- getContentDeserializer() - Method in class org.codehaus.jackson.map.deser.std.CollectionDeserializer
-
- getContentDeserializer() - Method in class org.codehaus.jackson.map.deser.std.ContainerDeserializerBase
-
Accesor for deserializer use for deserializing content values.
- getContentDeserializer() - Method in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
- getContentDeserializer() - Method in class org.codehaus.jackson.map.deser.std.ObjectArrayDeserializer
-
- getContentDeserializer() - Method in class org.codehaus.jackson.map.deser.std.StringCollectionDeserializer
-
- getContentType() - Method in class org.codehaus.jackson.map.deser.std.CollectionDeserializer
-
- getContentType() - Method in class org.codehaus.jackson.map.deser.std.ContainerDeserializerBase
-
Accessor for declared type of contained value elements; either exact
type, or one of its supertypes.
- getContentType() - Method in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
- getContentType() - Method in class org.codehaus.jackson.map.deser.std.ObjectArrayDeserializer
-
- getContentType() - Method in class org.codehaus.jackson.map.deser.std.StringCollectionDeserializer
-
- getContentType() - Method in class org.codehaus.jackson.map.type.ArrayType
-
- getContentType() - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- getContentType() - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- getContentType() - Method in class org.codehaus.jackson.type.JavaType
-
Method for accessing content type of this type, if type has
such a thing: simple types do not, structured types do
(like arrays, Collections and Maps)
- getContextAnnotation(Class<A>) - Method in interface org.codehaus.jackson.map.BeanProperty
-
Method for finding annotation associated with context of
this property; usually class in which member is declared
(or its subtype if processing subtype).
- getContextAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.BeanProperty.Std
-
- getContextAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- getContextAnnotation(Class<A>) - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- getCreatorProperties() - Method in class org.codehaus.jackson.map.deser.impl.PropertyBasedCreator
-
- getCurrentIndex() - Method in class org.codehaus.jackson.JsonStreamContext
-
- getCurrentLocation() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
Method that returns location of the last processed character;
usually for error reporting purposes
- getCurrentLocation() - Method in class org.codehaus.jackson.JsonParser
-
Method that returns location of the last processed character;
usually for error reporting purposes.
- getCurrentLocation() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getCurrentLocation() - Method in class org.codehaus.jackson.smile.SmileParser
-
Overridden since we do not really have character-based locations,
but we do have byte offset to specify.
- getCurrentLocation() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getCurrentLocation() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getCurrentName() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
Method that can be called to get the name associated with
the current event.
- getCurrentName() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- getCurrentName() - Method in class org.codehaus.jackson.impl.JsonReadContext
-
- getCurrentName() - Method in class org.codehaus.jackson.impl.JsonWriteContext
-
- getCurrentName() - Method in class org.codehaus.jackson.JsonParser
-
Method that can be called to get the name associated with
the current token: for
JsonToken.FIELD_NAME
s it will
be the same as what
JsonParser.getText()
returns;
for field values it will be preceding field name;
and for others (array values, root-level values) null.
- getCurrentName() - Method in class org.codehaus.jackson.JsonStreamContext
-
Method for accessing name associated with the current location.
- getCurrentName() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getCurrentName() - Method in class org.codehaus.jackson.smile.SmileParser
-
- getCurrentName() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getCurrentName() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getCurrentSegment() - Method in class org.codehaus.jackson.util.ByteArrayBuilder
-
- getCurrentSegment() - Method in class org.codehaus.jackson.util.TextBuffer
-
- getCurrentSegmentLength() - Method in class org.codehaus.jackson.util.ByteArrayBuilder
-
- getCurrentSegmentSize() - Method in class org.codehaus.jackson.util.TextBuffer
-
- getCurrentToken() - Method in class org.codehaus.jackson.JsonParser
-
Accessor to find which token parser currently points to, if any;
null will be returned if none.
- getCurrentToken() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getDataStream() - Method in class org.codehaus.jackson.format.DataFormatMatcher
-
Method to use for accessing input for which format detection has been done.
- getDateFormat() - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- getDateFormat() - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- getDateFormat() - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for accessing currently configured (textual) date format
that will be used for reading or writing date values (in case
of writing, only if textual output is configured; not if dates
are to be serialized as time stamps).
- getDecimalValue() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- getDecimalValue() - Method in class org.codehaus.jackson.JsonNode
-
- getDecimalValue() - Method in class org.codehaus.jackson.JsonParser
-
- getDecimalValue() - Method in class org.codehaus.jackson.node.BigIntegerNode
-
- getDecimalValue() - Method in class org.codehaus.jackson.node.DecimalNode
-
- getDecimalValue() - Method in class org.codehaus.jackson.node.DoubleNode
-
- getDecimalValue() - Method in class org.codehaus.jackson.node.IntNode
-
- getDecimalValue() - Method in class org.codehaus.jackson.node.LongNode
-
- getDecimalValue() - Method in class org.codehaus.jackson.node.NumericNode
-
- getDecimalValue() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getDecimalValue() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getDecimalValue() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getDeclaringClass() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- getDeclaringClass() - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- getDeclaringClass() - Method in class org.codehaus.jackson.map.introspect.AnnotatedField
-
- getDeclaringClass() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMember
-
- getDeclaringClass() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- getDeclaringClass() - Method in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
- getDefaultBean() - Method in class org.codehaus.jackson.map.ser.PropertyBuilder
-
- getDefaultConstructor() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getDefaultCreator() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- getDefaultCreator() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method that can be called to try to access member (constructor,
static factory method) that is used as the "default creator"
(creator that is called without arguments; typically default
[zero-argument] constructor of the type).
- getDefaultFilter() - Method in class org.codehaus.jackson.map.ser.impl.SimpleFilterProvider
-
- getDefaultImpl() - Method in class org.codehaus.jackson.map.jsontype.impl.StdTypeResolverBuilder
-
- getDefaultImpl() - Method in class org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
-
- getDefaultImpl() - Method in interface org.codehaus.jackson.map.jsontype.TypeResolverBuilder
-
Accessor for currently configured default type; implementation
class that may be used in case no valid type information is
available during type resolution
- getDefaultImpl() - Method in class org.codehaus.jackson.map.TypeDeserializer
-
Accessor for "default implementation" type; optionally defined
class to use in cases where type id is not
accessible for some reason (either missing, or can not be
resolved)
- getDefaultMapper() - Method in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
- getDefaultPropertyName() - Method in enum org.codehaus.jackson.annotate.JsonTypeInfo.Id
-
- getDefaultSchemaNode() - Static method in class org.codehaus.jackson.schema.JsonSchema
-
Get the default schema node.
- getDefaultTyper(JavaType) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method called to locate a type info handler for types that do not have
one explicitly declared via annotations (or other configuration).
- getDefaultValue(String, Method, Field) - Method in class org.codehaus.jackson.map.ser.PropertyBuilder
-
- getDefaultVariant() - Static method in class org.codehaus.jackson.Base64Variants
-
Method used to get the default variant ("MIME_NO_LINEFEEDS") for cases
where caller does not explicitly specify the variant.
- getDefaultVisibilityChecker() - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- getDefaultVisibilityChecker() - Method in class org.codehaus.jackson.map.MapperConfig
-
Accessor for object used for determining whether specific property elements
(method, constructors, fields) can be auto-detected based on
their visibility (access modifiers).
- getDefaultVisibilityChecker() - Method in class org.codehaus.jackson.map.SerializationConfig
-
- getDelegateCreator() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- getDelegateCreator() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method that can be called to try to access member (constructor,
static factory method) that is used as the "delegate creator".
- getDelegateType() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- getDelegateType() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method that can be used to determine what is the type of delegate
type to use, if any; if no delegates are used, will return null.
- getDeserializationConfig() - Method in interface org.codehaus.jackson.map.Module.SetupContext
-
Method that returns current deserialization configuration
settings.
- getDeserializationConfig() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that returns
the shared default
DeserializationConfig
object
that defines configuration settings for deserialization.
- getDeserializationMethodFilter(DeserializationConfig) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
Deprecated.
Since 1.9 just don't use
- getDeserializer(Class<?>) - Static method in class org.codehaus.jackson.map.deser.std.JsonNodeDeserializer
-
Factory method for accessing deserializer for specific node type
- getDeserializerProvider() - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- getDeserializerProvider() - Method in class org.codehaus.jackson.map.DeserializationContext
-
Returns provider that can be used for dynamically locating
other deserializers during runtime.
- getDeserializerProvider() - Method in class org.codehaus.jackson.map.ObjectMapper
-
- getDoubleBuilder() - Method in class org.codehaus.jackson.map.util.ArrayBuilders
-
- getDoubleValue() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- getDoubleValue() - Method in class org.codehaus.jackson.JsonNode
-
- getDoubleValue() - Method in class org.codehaus.jackson.JsonParser
-
Numeric accessor that can be called when the current
token is of type
JsonToken.VALUE_NUMBER_FLOAT
and
it can be expressed as a Java double primitive type.
- getDoubleValue() - Method in class org.codehaus.jackson.node.BigIntegerNode
-
- getDoubleValue() - Method in class org.codehaus.jackson.node.DecimalNode
-
- getDoubleValue() - Method in class org.codehaus.jackson.node.DoubleNode
-
- getDoubleValue() - Method in class org.codehaus.jackson.node.IntNode
-
- getDoubleValue() - Method in class org.codehaus.jackson.node.LongNode
-
- getDoubleValue() - Method in class org.codehaus.jackson.node.NumericNode
-
- getDoubleValue() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getDoubleValue() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getDoubleValue() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getElements() - Method in class org.codehaus.jackson.JsonNode
-
Method for accessing all value nodes of this Node, iff
this node is a JSON Array or Object node.
- getElements() - Method in class org.codehaus.jackson.node.ArrayNode
-
- getElements() - Method in class org.codehaus.jackson.node.ObjectNode
-
- getEmbeddedObject() - Method in class org.codehaus.jackson.JsonParser
-
- getEmbeddedObject() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getEmbeddedObject() - Method in class org.codehaus.jackson.smile.SmileParser
-
- getEmbeddedObject() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getEmbeddedObject() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getEmptyName() - Static method in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
- getEmptyValue() - Method in class org.codehaus.jackson.map.JsonDeserializer
-
Method called to determine value to be used for "empty" values
(most commonly when deserializing from empty JSON Strings).
- getEmptyValueChecker(String, JavaType) - Method in class org.codehaus.jackson.map.ser.PropertyBuilder
-
Helper method called to see if we need a comparator Object to check if values
of specified type are consider empty.
- getEncoding() - Method in class org.codehaus.jackson.io.IOContext
-
- getEntryCount() - Method in class org.codehaus.jackson.JsonStreamContext
-
- getEnum(int) - Method in class org.codehaus.jackson.map.util.EnumResolver
-
- getEnumClass() - Method in class org.codehaus.jackson.map.util.EnumResolver
-
- getEnumValues() - Method in class org.codehaus.jackson.map.ser.std.EnumSerializer
-
- getErasedSignature(StringBuilder) - Method in class org.codehaus.jackson.map.type.ArrayType
-
- getErasedSignature(StringBuilder) - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- getErasedSignature(StringBuilder) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- getErasedSignature(StringBuilder) - Method in class org.codehaus.jackson.map.type.SimpleType
-
- getErasedSignature(StringBuilder) - Method in class org.codehaus.jackson.map.type.TypeBase
-
- getErasedSignature() - Method in class org.codehaus.jackson.type.JavaType
-
Method for accessing signature without generic
type information, in form compatible with all versions
of JVM, and specifically used for type descriptions
when generating byte code.
- getErasedSignature(StringBuilder) - Method in class org.codehaus.jackson.type.JavaType
-
Method for accessing signature without generic
type information, in form compatible with all versions
of JVM, and specifically used for type descriptions
when generating byte code.
- getEscapeCodesForAscii() - Method in class org.codehaus.jackson.io.CharacterEscapes
-
Method generators can call to get lookup table for determining
escape handling for first 128 characters of Unicode (ASCII
characters.
- getEscapeSequence(int) - Method in class org.codehaus.jackson.io.CharacterEscapes
-
Method generators can call to get lookup table for determining
exact escape sequence to use for given character.
- getFactoryMethods() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- getFalse() - Static method in class org.codehaus.jackson.node.BooleanNode
-
- getField() - Method in class org.codehaus.jackson.map.BeanPropertyDefinition
-
- getField() - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- getFieldCount() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getFieldName() - Method in class org.codehaus.jackson.map.JsonMappingException.Reference
-
- getFieldNames() - Method in class org.codehaus.jackson.JsonNode
-
Method for accessing names of all fields for this Node, iff
this node is a JSON Object node.
- getFieldNames() - Method in class org.codehaus.jackson.node.ObjectNode
-
- getFields() - Method in class org.codehaus.jackson.JsonNode
-
- getFields() - Method in class org.codehaus.jackson.node.ObjectNode
-
Method to use for accessing all fields (with both names
and values) of this JSON Object.
- getFilteredProperties() - Method in class org.codehaus.jackson.map.ser.BeanSerializerBuilder
-
- getFilterProvider() - Method in class org.codehaus.jackson.map.SerializationConfig
-
Method for getting provider used for locating filters given
id (which is usually provided with filter annotations).
- getFilterProvider() - Method in class org.codehaus.jackson.map.SerializerProvider
-
Convenience method for accessing provider to find serialization filters used,
equivalent to calling:
- getFloatBuilder() - Method in class org.codehaus.jackson.map.util.ArrayBuilders
-
- getFloatValue() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- getFloatValue() - Method in class org.codehaus.jackson.JsonParser
-
Numeric accessor that can be called when the current
token is of type
JsonToken.VALUE_NUMBER_FLOAT
and
it can be expressed as a Java float primitive type.
- getFloatValue() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getFloatValue() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getFloatValue() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getFormatName() - Method in class org.codehaus.jackson.JsonFactory
-
Method that returns short textual id identifying format
this factory supports.
- getFormatName() - Method in class org.codehaus.jackson.map.MappingJsonFactory
-
Sub-classes need to override this method (as of 1.8)
- getFormatName() - Method in class org.codehaus.jackson.smile.SmileFactory
-
- getFrom() - Method in class org.codehaus.jackson.map.JsonMappingException.Reference
-
- getFromObjectArguments() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- getFromObjectArguments() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
- getFullName() - Method in class org.codehaus.jackson.map.introspect.AnnotatedField
-
- getFullName() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- getFunction() - Method in class org.codehaus.jackson.map.util.JSONPObject
-
- getGenericPropertyType() - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Get the generic property type of this property writer.
- getGenericSignature(StringBuilder) - Method in class org.codehaus.jackson.map.type.ArrayType
-
- getGenericSignature(StringBuilder) - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- getGenericSignature(StringBuilder) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- getGenericSignature(StringBuilder) - Method in class org.codehaus.jackson.map.type.SimpleType
-
- getGenericSignature(StringBuilder) - Method in class org.codehaus.jackson.map.type.TypeBase
-
- getGenericSignature() - Method in class org.codehaus.jackson.type.JavaType
-
Method for accessing signature that contains generic
type information, in form compatible with JVM 1.5
as per JLS.
- getGenericSignature(StringBuilder) - Method in class org.codehaus.jackson.type.JavaType
-
- getGenericType() - Method in class org.codehaus.jackson.map.introspect.Annotated
-
Full generic type of the annotated element; definition
of what exactly this means depends on sub-class.
- getGenericType() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getGenericType() - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- getGenericType() - Method in class org.codehaus.jackson.map.introspect.AnnotatedField
-
- getGenericType() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
For methods, this returns declared return type, which is only
useful with getters (setters do not return anything; hence "void"
type is returned here)
- getGenericType() - Method in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
- getGetter() - Method in class org.codehaus.jackson.map.BeanPropertyDefinition
-
- getGetter() - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- getHandlerInstantiator() - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- getHandlerInstantiator() - Method in class org.codehaus.jackson.map.MapperConfig
-
- getHighestEscapedChar() - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- getHighestEscapedChar() - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- getHighestEscapedChar() - Method in class org.codehaus.jackson.JsonGenerator
-
Accessor method for testing what is the highest unescaped character
configured for this generator.
- getIgnoredPropertyNames() - Method in class org.codehaus.jackson.map.BeanDescription
-
- getIgnoredPropertyNames() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- getIgnoredPropertyNames() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- getIgnoredPropertyNamesForDeser() - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- getIgnoredPropertyNamesForDeser() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- getIndex() - Method in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
Accessor for index of this parameter within argument list
- getIndex() - Method in class org.codehaus.jackson.map.JsonMappingException.Reference
-
- getInjectables() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- getInjectableValueId() - Method in class org.codehaus.jackson.map.deser.impl.CreatorProperty
-
- getInjectableValueId() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
Accessor for id of injectable value, if this bean property supports
value injection.
- getInputCodeComment() - Static method in class org.codehaus.jackson.util.CharTypes
-
- getInputCodeLatin1() - Static method in class org.codehaus.jackson.util.CharTypes
-
- getInputCodeLatin1JsNames() - Static method in class org.codehaus.jackson.util.CharTypes
-
- getInputCodeUtf8() - Static method in class org.codehaus.jackson.util.CharTypes
-
- getInputCodeUtf8JsNames() - Static method in class org.codehaus.jackson.util.CharTypes
-
- getInputDecorator() - Method in class org.codehaus.jackson.JsonFactory
-
Method for getting currently configured input decorator (if any;
there is no default decorator).
- getInputSource() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- getInputSource() - Method in class org.codehaus.jackson.impl.ReaderBasedParserBase
-
Deprecated.
- getInputSource() - Method in class org.codehaus.jackson.impl.StreamBasedParserBase
-
Deprecated.
- getInputSource() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- getInputSource() - Method in class org.codehaus.jackson.JsonParser
-
Method that can be used to get access to object that is used
to access input being parsed; this is usually either
InputStream
or
Reader
, depending on what
parser was constructed with.
- getInputSource() - Method in class org.codehaus.jackson.smile.SmileParser
-
- getInputSource() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getInstance() - Static method in class org.codehaus.jackson.io.JsonStringEncoder
-
Factory method for getting an instance; this is either recycled per-thread instance,
or a newly constructed one.
- getInstance() - Static method in class org.codehaus.jackson.node.MissingNode
-
- getInstance() - Static method in class org.codehaus.jackson.node.NullNode
-
- getIntBuilder() - Method in class org.codehaus.jackson.map.util.ArrayBuilders
-
- getInternalName() - Method in class org.codehaus.jackson.map.BeanPropertyDefinition
-
Accessor that can be used to determine implicit name from underlying
element(s) before possible renaming.
- getInternalName() - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- getInternalSetting(Object) - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Method for accessing value of specified internal setting.
- getIntValue() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- getIntValue() - Method in class org.codehaus.jackson.JsonNode
-
Returns integer value for this node,
if and only if
this node is numeric (
JsonNode.isNumber()
returns true).
- getIntValue() - Method in class org.codehaus.jackson.JsonParser
-
Numeric accessor that can be called when the current
token is of type
JsonToken.VALUE_NUMBER_INT
and
it can be expressed as a value of Java int primitive type.
- getIntValue() - Method in class org.codehaus.jackson.node.BigIntegerNode
-
- getIntValue() - Method in class org.codehaus.jackson.node.DecimalNode
-
- getIntValue() - Method in class org.codehaus.jackson.node.DoubleNode
-
- getIntValue() - Method in class org.codehaus.jackson.node.IntNode
-
- getIntValue() - Method in class org.codehaus.jackson.node.LongNode
-
- getIntValue() - Method in class org.codehaus.jackson.node.NumericNode
-
- getIntValue() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getIntValue() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getIntValue() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getISO8601Format(TimeZone) - Static method in class org.codehaus.jackson.map.util.StdDateFormat
-
Method for getting a non-shared DateFormat instance
that uses specified timezone and can handle simple ISO-8601
compliant date format.
- getJavaName() - Method in enum org.codehaus.jackson.JsonEncoding
-
Method for accessing encoding name that JDK will support.
- getJsonFactory() - Method in class org.codehaus.jackson.map.ObjectMapper
-
- getJsonValueMethod() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- getKeyClass() - Method in class org.codehaus.jackson.map.deser.std.StdKeyDeserializer
-
- getKeySerializer() - Method in class org.codehaus.jackson.map.SerializerProvider
-
Deprecated.
As of version 1.7, use version that exposes property object
instead of just its type (needed for contextual serializers)
- getKeySerializer(JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.SerializerProvider
-
Deprecated.
As of version 1.8
- getKeyType() - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- getKeyType() - Method in class org.codehaus.jackson.type.JavaType
-
Method for accessing key type for this type, assuming type
has such a concept (only Map types do)
- getLastClearedToken() - Method in class org.codehaus.jackson.JsonParser
-
- getLastClearedToken() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getLineNr() - Method in class org.codehaus.jackson.JsonLocation
-
- getLocation() - Method in exception org.codehaus.jackson.JsonProcessingException
-
- getLongBuilder() - Method in class org.codehaus.jackson.map.util.ArrayBuilders
-
- getLongValue() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- getLongValue() - Method in class org.codehaus.jackson.JsonNode
-
- getLongValue() - Method in class org.codehaus.jackson.JsonParser
-
Numeric accessor that can be called when the current
token is of type
JsonToken.VALUE_NUMBER_INT
and
it can be expressed as a Java long primitive type.
- getLongValue() - Method in class org.codehaus.jackson.node.BigIntegerNode
-
- getLongValue() - Method in class org.codehaus.jackson.node.DecimalNode
-
- getLongValue() - Method in class org.codehaus.jackson.node.DoubleNode
-
- getLongValue() - Method in class org.codehaus.jackson.node.IntNode
-
- getLongValue() - Method in class org.codehaus.jackson.node.LongNode
-
- getLongValue() - Method in class org.codehaus.jackson.node.NumericNode
-
- getLongValue() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getLongValue() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getLongValue() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getMajorVersion() - Method in class org.codehaus.jackson.Version
-
- getManagedReferenceName() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- getMapClass() - Method in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
- getMapperVersion() - Method in interface org.codehaus.jackson.map.Module.SetupContext
-
Method that returns version information about
ObjectMapper
that implements this context.
- getMask() - Method in enum org.codehaus.jackson.JsonGenerator.Feature
-
- getMask() - Method in enum org.codehaus.jackson.JsonParser.Feature
-
- getMask() - Method in enum org.codehaus.jackson.map.DeserializationConfig.Feature
-
- getMask() - Method in interface org.codehaus.jackson.map.MapperConfig.ConfigFeature
-
Returns bit mask for this feature instance
- getMask() - Method in enum org.codehaus.jackson.map.SerializationConfig.Feature
-
- getMask() - Method in enum org.codehaus.jackson.mrbean.AbstractTypeMaterializer.Feature
-
- getMask() - Method in enum org.codehaus.jackson.smile.SmileGenerator.Feature
-
- getMask() - Method in enum org.codehaus.jackson.smile.SmileParser.Feature
-
- getMatch() - Method in class org.codehaus.jackson.format.DataFormatMatcher
-
Accessor for
JsonFactory
that represents format that data matched.
- getMatchedFormatName() - Method in class org.codehaus.jackson.format.DataFormatMatcher
-
Accessor for getting brief textual name of matched format if any (null
if none).
- getMatchStrength() - Method in class org.codehaus.jackson.format.DataFormatMatcher
-
- getMaxLineLength() - Method in class org.codehaus.jackson.Base64Variant
-
- getMechanism() - Method in class org.codehaus.jackson.map.jsontype.impl.ClassNameIdResolver
-
- getMechanism() - Method in class org.codehaus.jackson.map.jsontype.impl.MinimalClassNameIdResolver
-
- getMechanism() - Method in class org.codehaus.jackson.map.jsontype.impl.TypeNameIdResolver
-
- getMechanism() - Method in interface org.codehaus.jackson.map.jsontype.TypeIdResolver
-
Accessor for mechanism that this resolver uses for determining
type id from type.
- getMember() - Method in interface org.codehaus.jackson.map.BeanProperty
-
Method for accessing primary physical entity that represents the property;
annotated field, method or constructor property.
- getMember() - Method in class org.codehaus.jackson.map.BeanProperty.Std
-
- getMember() - Method in class org.codehaus.jackson.map.deser.impl.CreatorProperty
-
- getMember() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.FieldProperty
-
- getMember() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- getMember() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.InnerClassProperty
-
- getMember() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.ManagedReferenceProperty
-
- getMember() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.MethodProperty
-
- getMember() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.SetterlessProperty
-
- getMember() - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- getMember() - Method in class org.codehaus.jackson.map.introspect.AnnotatedField
-
- getMember() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMember
-
- getMember() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- getMember() - Method in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
- getMember() - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- getMemberMethodCount() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getMessage() - Method in exception org.codehaus.jackson.JsonProcessingException
-
Default method overridden so that we can add location information
- getMessage() - Method in exception org.codehaus.jackson.map.JsonMappingException
-
Method is overridden so that we can properly inject description
of problem path, if such is defined.
- getMinorVersion() - Method in class org.codehaus.jackson.Version
-
- getModifiers() - Method in class org.codehaus.jackson.map.introspect.Annotated
-
- getModifiers() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getModifiers() - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- getModifiers() - Method in class org.codehaus.jackson.map.introspect.AnnotatedField
-
- getModifiers() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- getModifiers() - Method in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
Returns modifiers of the constructor, as parameters do not
have independent modifiers.
- getModuleName() - Method in class org.codehaus.jackson.map.Module
-
Method that returns identifier for module; this can be used by Jackson
for informational purposes, as well as in associating extensions with
module that provides them.
- getModuleName() - Method in class org.codehaus.jackson.map.module.SimpleModule
-
- getModuleName() - Method in class org.codehaus.jackson.mrbean.MrBeanModule
-
- getMutator() - Method in class org.codehaus.jackson.map.BeanPropertyDefinition
-
Method used to find mutator (constructor parameter, setter, field) to use for
changing value of the property.
- getMutator() - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- getName() - Method in class org.codehaus.jackson.Base64Variant
-
- getName() - Method in class org.codehaus.jackson.map.AnnotationIntrospector.ReferenceProperty
-
- getName() - Method in interface org.codehaus.jackson.map.BeanProperty
-
Method to get logical name of the property
- getName() - Method in class org.codehaus.jackson.map.BeanProperty.Std
-
- getName() - Method in class org.codehaus.jackson.map.BeanPropertyDefinition
-
Accessor for name used for external representation (in JSON).
- getName() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- getName() - Method in class org.codehaus.jackson.map.introspect.Annotated
-
- getName() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getName() - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- getName() - Method in class org.codehaus.jackson.map.introspect.AnnotatedField
-
- getName() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- getName() - Method in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
Parameters have no names in bytecode (unlike in source code),
will always return empty String ("").
- getName() - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- getName() - Method in class org.codehaus.jackson.map.jsontype.NamedType
-
- getName() - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- getName() - Method in interface org.codehaus.jackson.map.util.Named
-
- getName() - Method in class org.codehaus.jackson.sym.Name
-
- getNextChar(String) - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- getNextChar(String) - Method in class org.codehaus.jackson.impl.ReaderBasedParserBase
-
Deprecated.
- getNodeFactory() - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- getNodeFactory() - Method in class org.codehaus.jackson.map.DeserializationContext
-
- getNodeFactory() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that can be used to get hold of
JsonNodeFactory
that this mapper will use when directly constructing
root
JsonNode
instances for Trees.
- getNullKeySerializer() - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- getNullKeySerializer() - Method in class org.codehaus.jackson.map.SerializerProvider
-
Method called to get the serializer to use for serializing
Map keys that are nulls: this is needed since JSON does not allow
any non-String value as key, including null.
- getNullSerializer() - Method in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
- getNullValue() - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer.PrimitiveOrWrapperDeserializer
-
- getNullValue() - Method in class org.codehaus.jackson.map.JsonDeserializer
-
Method that can be called to determine value to be used for
representing null values (values deserialized when JSON token
is
JsonToken.VALUE_NULL
).
- getNullValueSerializer() - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- getNullValueSerializer() - Method in class org.codehaus.jackson.map.SerializerProvider
-
Method called to get the serializer to use for serializing
values (root level, Array members or List field values)
that are nulls.
- getNumberType() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- getNumberType() - Method in class org.codehaus.jackson.JsonNode
-
If this node is a numeric type (as per
JsonNode.isNumber()
),
returns native type that node uses to store the numeric
value.
- getNumberType() - Method in class org.codehaus.jackson.JsonParser
-
- getNumberType() - Method in class org.codehaus.jackson.node.BaseJsonNode
-
- getNumberType() - Method in class org.codehaus.jackson.node.BigIntegerNode
-
- getNumberType() - Method in class org.codehaus.jackson.node.DecimalNode
-
- getNumberType() - Method in class org.codehaus.jackson.node.DoubleNode
-
- getNumberType() - Method in class org.codehaus.jackson.node.IntNode
-
- getNumberType() - Method in class org.codehaus.jackson.node.LongNode
-
- getNumberType() - Method in class org.codehaus.jackson.node.NumericNode
-
- getNumberType() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getNumberType() - Method in class org.codehaus.jackson.smile.SmileParser
-
- getNumberType() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getNumberType() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getNumberValue() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- getNumberValue() - Method in class org.codehaus.jackson.JsonNode
-
Returns numeric value for this node,
if and only if
this node is numeric (
JsonNode.isNumber()
returns true); otherwise
returns null
- getNumberValue() - Method in class org.codehaus.jackson.JsonParser
-
Generic number value accessor method that will work for
all kinds of numeric values.
- getNumberValue() - Method in class org.codehaus.jackson.node.BigIntegerNode
-
- getNumberValue() - Method in class org.codehaus.jackson.node.DecimalNode
-
- getNumberValue() - Method in class org.codehaus.jackson.node.DoubleNode
-
- getNumberValue() - Method in class org.codehaus.jackson.node.IntNode
-
- getNumberValue() - Method in class org.codehaus.jackson.node.LongNode
-
- getNumberValue() - Method in class org.codehaus.jackson.node.NumericNode
-
- getNumberValue() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getNumberValue() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getNumberValue() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getOuterClass(Class<?>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Method for finding enclosing class for non-static inner classes
- getOutputContext() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
Note: co-variant return type.
- getOutputContext() - Method in class org.codehaus.jackson.JsonGenerator
-
- getOutputContext() - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- getOutputContext() - Method in class org.codehaus.jackson.util.TokenBuffer
-
- getOutputDecorator() - Method in class org.codehaus.jackson.JsonFactory
-
Method for getting currently configured output decorator (if any;
there is no default decorator).
- getOutputTarget() - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- getOutputTarget() - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- getOutputTarget() - Method in class org.codehaus.jackson.JsonGenerator
-
Method that can be used to get access to object that is used
as target for generated output; this is usually either
OutputStream
or
Writer
, depending on what
generator was constructed with.
- getOutputTarget() - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- getOutputTarget() - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- getOwner() - Method in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
Accessor for 'owner' of this parameter; method or constructor that
has this parameter as member of its argument list.
- getPaddingByte() - Method in class org.codehaus.jackson.Base64Variant
-
- getPaddingChar() - Method in class org.codehaus.jackson.Base64Variant
-
- getParameter(int) - Method in class org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
- getParameterAnnotations(int) - Method in class org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
- getParameterClass(int) - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- getParameterClass(int) - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- getParameterClass(int) - Method in class org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
- getParameterClasses() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- getParameterCount() - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- getParameterCount() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- getParameterCount() - Method in class org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
- getParameters(Object[]) - Method in class org.codehaus.jackson.map.deser.impl.PropertyValueBuffer
-
- getParameterType(int) - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- getParameterType(int) - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- getParameterType() - Method in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
- getParameterType(int) - Method in class org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
- getParameterTypes() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- getParent() - Method in class org.codehaus.jackson.impl.JsonReadContext
-
- getParent() - Method in class org.codehaus.jackson.impl.JsonWriteContext
-
- getParent() - Method in class org.codehaus.jackson.JsonStreamContext
-
Accessor for finding parent context of this context; will
return null for root context.
- getParser() - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
Method for accessing the currently active parser.
- getParser() - Method in class org.codehaus.jackson.map.DeserializationContext
-
Accessor for getting access to the underlying JSON parser used
for deserialization.
- getParsingContext() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- getParsingContext() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- getParsingContext() - Method in class org.codehaus.jackson.JsonParser
-
Method that can be used to access current parsing context reader
is in.
- getParsingContext() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getParsingContext() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getParsingContext() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getPatchLevel() - Method in class org.codehaus.jackson.Version
-
- getPath(String) - Method in class org.codehaus.jackson.JsonNode
-
- getPath(int) - Method in class org.codehaus.jackson.JsonNode
-
- getPath() - Method in exception org.codehaus.jackson.map.JsonMappingException
-
- getPojo() - Method in class org.codehaus.jackson.node.POJONode
-
Method that can be used to access the POJO this node wraps.
- getPrefix() - Method in class org.codehaus.jackson.map.util.JSONWrappedObject
-
- getProblemHandlers() - Method in class org.codehaus.jackson.map.DeserializationConfig
-
Method for getting head of the problem handler chain.
- getProperties() - Method in class org.codehaus.jackson.map.deser.BeanDeserializerBuilder
-
Method that allows accessing all properties that this
builder currently contains.
- getProperties() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- getProperties() - Method in class org.codehaus.jackson.map.ser.BeanSerializerBuilder
-
- getProperty() - Method in class org.codehaus.jackson.map.deser.SettableAnyProperty
-
- getPropertyCount() - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Accessor for checking number of deserialized properties.
- getPropertyIndex() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
Method for accessing unique index of this property; indexes are
assigned once all properties of a
BeanDeserializer
have
been collected.
- getPropertyMap() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- getPropertyName() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- getPropertyName() - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeDeserializer
-
- getPropertyName() - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- getPropertyName() - Method in class org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeDeserializer
-
- getPropertyName() - Method in class org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeSerializer
-
- getPropertyName() - Method in class org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
-
- getPropertyName() - Method in class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
-
- getPropertyName() - Method in class org.codehaus.jackson.map.TypeDeserializer
-
Name of property that contains type information, if
property-based inclusion is used.
- getPropertyName() - Method in class org.codehaus.jackson.map.TypeSerializer
-
Name of property that contains type information, if
property-based inclusion is used.
- getPropertyNamingStrategy() - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- getPropertyNamingStrategy() - Method in class org.codehaus.jackson.map.MapperConfig
-
- getPropertyType() - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- getProperytIndex() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- getRawClass() - Method in class org.codehaus.jackson.map.type.HierarchicType
-
- getRawClass() - Method in class org.codehaus.jackson.type.JavaType
-
- getRawSerializationType() - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- getRawType() - Method in class org.codehaus.jackson.map.introspect.Annotated
-
"Raw" type (type-erased class) of the annotated element; definition
of what exactly this means depends on sub-class.
- getRawType() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getRawType() - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- getRawType() - Method in class org.codehaus.jackson.map.introspect.AnnotatedField
-
- getRawType() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
For methods, this returns declared return type, which is only
useful with getters (setters do not return anything; hence "void"
type is returned here)
- getRawType() - Method in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
- getReadOnlyLookupMap() - Method in class org.codehaus.jackson.map.ser.impl.SerializerCache
-
Method that can be called to get a read-only instance populated from the
most recent version of the shared lookup Map.
- getReferringClass() - Method in exception org.codehaus.jackson.map.exc.UnrecognizedPropertyException
-
Method for accessing type (class) that is missing definition to allow
binding of the unrecognized property.
- getRFC1123Format(TimeZone) - Static method in class org.codehaus.jackson.map.util.StdDateFormat
-
Method for getting a non-shared DateFormat instance
that uses specific timezone and can handle RFC-1123
compliant date format.
- getRootCause(Throwable) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Method that can be used to find the "root cause", innermost
of chained (wrapped) exceptions.
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ext.CoreXMLSerializers.XMLGregorianCalendarSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ext.DOMSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ext.JodaSerializers.DateMidnightSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ext.JodaSerializers.DateTimeSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ext.JodaSerializers.LocalDateSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ext.JodaSerializers.LocalDateTimeSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.impl.FailingSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.impl.UnknownSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.AsArraySerializerBase
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.BeanSerializerBase
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.CalendarSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.DateSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.EnumMapSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.EnumSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.JsonValueSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.MapSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.NullSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.ObjectArraySerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.RawSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.ScalarSerializerBase
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.SerializableSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.SerializableWithTypeSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.SerializerBase
-
Note: since Jackson 1.9, default implementation claims type is "string"
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StaticListSerializerBase
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.BooleanArraySerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.ByteArraySerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.CharArraySerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.DoubleArraySerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.FloatArraySerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.IntArraySerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.LongArraySerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.ShortArraySerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.StringArraySerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdJdkSerializers.AtomicBooleanSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdJdkSerializers.AtomicIntegerSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdJdkSerializers.AtomicLongSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdJdkSerializers.AtomicReferenceSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdJdkSerializers.ClassSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdJdkSerializers.FileSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StdKeySerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.StringSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.TokenBufferSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.std.ToStringSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.StdSerializers.BooleanSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.StdSerializers.DoubleSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.StdSerializers.FloatSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.StdSerializers.IntegerSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.StdSerializers.IntLikeSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.StdSerializers.LongSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.StdSerializers.NumberSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.StdSerializers.SqlDateSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.StdSerializers.SqlTimeSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.map.ser.StdSerializers.StringSerializer
-
Deprecated.
- getSchema(SerializerProvider, Type) - Method in interface org.codehaus.jackson.schema.SchemaAware
-
Get the representation of the schema to which this serializer will conform.
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.xc.DataHandlerJsonSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.xc.DomElementJsonSerializer
-
- getSchema(SerializerProvider, Type) - Method in class org.codehaus.jackson.xc.XmlAdapterJsonSerializer
-
- getSchemaNode() - Method in class org.codehaus.jackson.schema.JsonSchema
-
Method for accessing root JSON object of the contained schema.
- getSchemaType() - Method in interface org.codehaus.jackson.FormatSchema
-
Method that can be used to get an identifier that can be used for diagnostics
purposes, to indicate what kind of data format this schema is used for: typically
it is a short name of format itself, but it can also contain additional information
in cases where data format supports multiple types of schemas.
- getSerializationConfig() - Method in interface org.codehaus.jackson.map.Module.SetupContext
-
Method that returns current serialization configuration
settings.
- getSerializationConfig() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that returns the shared default
SerializationConfig
object that defines configuration settings for serialization.
- getSerializationInclusion() - Method in class org.codehaus.jackson.map.SerializationConfig
-
- getSerializationMethodFilter(SerializationConfig) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
Deprecated.
Since 1.9 just don't use
- getSerializationType() - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- getSerializationType() - Method in class org.codehaus.jackson.map.util.JSONPObject
-
- getSerializationType() - Method in class org.codehaus.jackson.map.util.JSONWrappedObject
-
- getSerializationView() - Method in class org.codehaus.jackson.map.SerializationConfig
-
Method for checking which serialization view is being used,
if any; null if none.
- getSerializationView() - Method in class org.codehaus.jackson.map.SerializerProvider
-
Convenience method for accessing serialization view in use (if any); equivalent to:
- getSerializedName() - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- getSerializer() - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- getSerializerProvider() - Method in class org.codehaus.jackson.map.ObjectMapper
-
- getSetter() - Method in class org.codehaus.jackson.map.BeanPropertyDefinition
-
- getSetter() - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- getShortBuilder() - Method in class org.codehaus.jackson.map.util.ArrayBuilders
-
- getShortValue() - Method in class org.codehaus.jackson.JsonParser
-
Numeric accessor that can be called when the current
token is of type
JsonToken.VALUE_NUMBER_INT
and
it can be expressed as a value of Java short primitive type.
- getShortValue() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getSize(Object, Class<?>, Type, Annotation[], MediaType) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
Method that JAX-RS container calls to try to figure out
serialized length of given value.
- getSourceRef() - Method in class org.codehaus.jackson.JsonLocation
-
Reference to the original resource being read, if one available.
- getSourceReference() - Method in class org.codehaus.jackson.io.IOContext
-
- getStartLocation(Object) - Method in class org.codehaus.jackson.impl.JsonReadContext
-
- getStaticMethods() - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- getStdKeySerializer(JavaType) - Static method in class org.codehaus.jackson.map.ser.std.StdKeySerializers
-
- getSubType() - Method in class org.codehaus.jackson.map.type.HierarchicType
-
- getSubtypeResolver() - Method in class org.codehaus.jackson.map.MapperConfig
-
Accessor for object used for finding out all reachable subtypes
for supertypes; needed when a logical type name is used instead
of class name (or custom scheme).
- getSubtypeResolver() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method for accessing subtype resolver in use.
- getSuffix() - Method in class org.codehaus.jackson.map.util.JSONWrappedObject
-
- getSuperType() - Method in class org.codehaus.jackson.map.type.HierarchicType
-
- getterEnabled() - Method in enum org.codehaus.jackson.annotate.JsonMethod
-
- getText() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- getText() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
Method for accessing textual representation of the current event;
if no current event (before first call to
ReaderBasedParser.nextToken()
, or
after encountering end-of-input), returns null.
- getText() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- getText() - Method in class org.codehaus.jackson.JsonParser
-
Method for accessing textual representation of the current token;
if no current token (before first call to
JsonParser.nextToken()
, or
after encountering end-of-input), returns null.
- getText() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getText() - Method in class org.codehaus.jackson.smile.SmileParser
-
Method for accessing textual representation of the current event;
if no current event (before first call to
SmileParser.nextToken()
, or
after encountering end-of-input), returns null.
- getText() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getText() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getTextBuffer() - Method in class org.codehaus.jackson.util.TextBuffer
-
- getTextCharacters() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- getTextCharacters() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- getTextCharacters() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- getTextCharacters() - Method in class org.codehaus.jackson.JsonParser
-
Method similar to
JsonParser.getText()
, but that will return
underlying (unmodifiable) character array that contains
textual value, instead of constructing a String object
to contain this information.
- getTextCharacters() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getTextCharacters() - Method in class org.codehaus.jackson.smile.SmileParser
-
- getTextCharacters() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getTextCharacters() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getTextLength() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- getTextLength() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- getTextLength() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- getTextLength() - Method in class org.codehaus.jackson.JsonParser
-
- getTextLength() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getTextLength() - Method in class org.codehaus.jackson.smile.SmileParser
-
- getTextLength() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getTextLength() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getTextOffset() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- getTextOffset() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- getTextOffset() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- getTextOffset() - Method in class org.codehaus.jackson.JsonParser
-
- getTextOffset() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getTextOffset() - Method in class org.codehaus.jackson.smile.SmileParser
-
- getTextOffset() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getTextOffset() - Method in class org.codehaus.jackson.util.TextBuffer
-
- getTextOffset() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getTextValue() - Method in class org.codehaus.jackson.JsonNode
-
Method to use for accessing String values.
- getTextValue() - Method in class org.codehaus.jackson.node.TextNode
-
- getTokenCharacterOffset() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- getTokenColumnNr() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- getTokenLineNr() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- getTokenLocation() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
Method that return the starting location of the current
token; that is, position of the first character from input
that starts the current token.
- getTokenLocation() - Method in class org.codehaus.jackson.JsonParser
-
Method that return the starting location of the current
token; that is, position of the first character from input
that starts the current token.
- getTokenLocation() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- getTokenLocation() - Method in class org.codehaus.jackson.smile.SmileParser
-
Overridden since we do not really have character-based locations,
but we do have byte offset to specify.
- getTokenLocation() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- getTokenLocation() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- getTrue() - Static method in class org.codehaus.jackson.node.BooleanNode
-
- getType() - Method in class org.codehaus.jackson.map.AnnotationIntrospector.ReferenceProperty
-
- getType() - Method in class org.codehaus.jackson.map.BeanDescription
-
Method for accessing declared type of bean being introspected,
including full generic type information (from declaration)
- getType() - Method in interface org.codehaus.jackson.map.BeanProperty
-
Method to get declared type of the property.
- getType() - Method in class org.codehaus.jackson.map.BeanProperty.Std
-
- getType() - Method in class org.codehaus.jackson.map.deser.SettableAnyProperty
-
- getType() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- getType(TypeBindings) - Method in class org.codehaus.jackson.map.introspect.Annotated
-
Full generic type of the annotated element; definition
of what exactly this means depends on sub-class.
- getType(TypeBindings) - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
As per [JACKSON-468], we need to also allow declaration of local
type bindings; mostly it will allow defining bounds.
- getType(TypeBindings) - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
As per [JACKSON-468], we need to also allow declaration of local
type bindings; mostly it will allow defining bounds.
- getType(TypeBindings, TypeVariable<?>[]) - Method in class org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
- getType() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- getType() - Method in class org.codehaus.jackson.map.jsontype.NamedType
-
- getType() - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- getType() - Method in class org.codehaus.jackson.type.TypeReference
-
- getTypeDesc() - Method in class org.codehaus.jackson.JsonStreamContext
-
Method for accessing simple type description of current context;
either ROOT (for root-level values), OBJECT (for field names and
values of JSON Objects) or ARRAY (for values of JSON Arrays)
- getTypeFactory() - Method in class org.codehaus.jackson.map.DeserializationContext
-
- getTypeFactory() - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- getTypeFactory() - Method in class org.codehaus.jackson.map.MapperConfig
-
- getTypeFactory() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Accessor for getting currently configured
TypeFactory
instance.
- getTypeHandler() - Method in class org.codehaus.jackson.map.type.TypeBase
-
- getTypeHandler() - Method in class org.codehaus.jackson.type.JavaType
-
Method for accessing type handler associated with this type, if any
- getTypeIdResolver() - Method in class org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
-
- getTypeIdResolver() - Method in class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
-
- getTypeIdResolver() - Method in class org.codehaus.jackson.map.TypeDeserializer
-
Accessor for object that handles conversions between
types and matching type ids.
- getTypeIdResolver() - Method in class org.codehaus.jackson.map.TypeSerializer
-
Accessor for object that handles conversions between
types and matching type ids.
- getTypeInclusion() - Method in class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeDeserializer
-
- getTypeInclusion() - Method in class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
-
- getTypeInclusion() - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeDeserializer
-
- getTypeInclusion() - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- getTypeInclusion() - Method in class org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeDeserializer
-
- getTypeInclusion() - Method in class org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeSerializer
-
- getTypeInclusion() - Method in class org.codehaus.jackson.map.jsontype.impl.AsWrapperTypeDeserializer
-
- getTypeInclusion() - Method in class org.codehaus.jackson.map.jsontype.impl.AsWrapperTypeSerializer
-
- getTypeInclusion() - Method in class org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
-
- getTypeInclusion() - Method in class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
-
- getTypeInclusion() - Method in class org.codehaus.jackson.map.TypeDeserializer
-
Accessor for type information inclusion method
that deserializer uses; indicates how type information
is (expected to be) embedded in JSON input.
- getTypeInclusion() - Method in class org.codehaus.jackson.map.TypeSerializer
-
Accessor for type information inclusion method
that serializer uses; indicates how type information
is embedded in resulting JSON.
- getTypeProperty() - Method in class org.codehaus.jackson.map.jsontype.impl.StdTypeResolverBuilder
-
- getTypeResolverBuilder() - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- getUnknownTypeSerializer(Class<?>) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- getUnknownTypeSerializer(Class<?>) - Method in class org.codehaus.jackson.map.SerializerProvider
-
Method called to get the serializer to use if provider
can not determine an actual type-specific serializer
to use; typically when none of
SerializerFactory
instances are able to construct a serializer.
- getUnrecognizedPropertyName() - Method in exception org.codehaus.jackson.map.exc.UnrecognizedPropertyException
-
Convenience method for accessing logical property name that could
not be mapped.
- getValue() - Method in class org.codehaus.jackson.io.SerializedString
-
- getValue() - Method in class org.codehaus.jackson.map.util.JSONPObject
-
- getValue() - Method in class org.codehaus.jackson.map.util.JSONWrappedObject
-
- getValue() - Method in interface org.codehaus.jackson.SerializableString
-
Returns unquoted String that this object represents (and offers
serialized forms for)
- getValueAsBoolean(boolean) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- getValueAsBoolean() - Method in class org.codehaus.jackson.JsonNode
-
- getValueAsBoolean(boolean) - Method in class org.codehaus.jackson.JsonNode
-
- getValueAsBoolean() - Method in class org.codehaus.jackson.JsonParser
-
Method that will try to convert value of current token to a
boolean.
- getValueAsBoolean(boolean) - Method in class org.codehaus.jackson.JsonParser
-
Method that will try to convert value of current token to a
boolean.
- getValueAsDouble(double) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- getValueAsDouble() - Method in class org.codehaus.jackson.JsonNode
-
- getValueAsDouble(double) - Method in class org.codehaus.jackson.JsonNode
-
- getValueAsDouble() - Method in class org.codehaus.jackson.JsonParser
-
Method that will try to convert value of current token to a Java
double.
- getValueAsDouble(double) - Method in class org.codehaus.jackson.JsonParser
-
Method that will try to convert value of current token to a
Java double.
- getValueAsInt(int) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- getValueAsInt() - Method in class org.codehaus.jackson.JsonNode
-
- getValueAsInt(int) - Method in class org.codehaus.jackson.JsonNode
-
- getValueAsInt() - Method in class org.codehaus.jackson.JsonParser
-
Method that will try to convert value of current token to a
int.
- getValueAsInt(int) - Method in class org.codehaus.jackson.JsonParser
-
Method that will try to convert value of current token to a
int.
- getValueAsLong(long) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- getValueAsLong() - Method in class org.codehaus.jackson.JsonNode
-
- getValueAsLong(long) - Method in class org.codehaus.jackson.JsonNode
-
- getValueAsLong() - Method in class org.codehaus.jackson.JsonParser
-
Method that will try to convert value of current token to a
long.
- getValueAsLong(long) - Method in class org.codehaus.jackson.JsonParser
-
Method that will try to convert value of current token to a
long.
- getValueAsText() - Method in class org.codehaus.jackson.JsonNode
-
- getValueAsText() - Method in class org.codehaus.jackson.node.ContainerNode
-
- getValueClass() - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- getValueDeserializer() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- getValueHandler() - Method in class org.codehaus.jackson.map.type.TypeBase
-
- getValueHandler() - Method in class org.codehaus.jackson.type.JavaType
-
Method for accessing value handler associated with this type, if any
- getValueInstantiator() - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
- getValueInstantiator() - Method in class org.codehaus.jackson.map.deser.BeanDeserializerBuilder
-
- getValueType() - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
- getValueType() - Method in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
- getValueType() - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
Exact structured type deserializer handles, if known.
- getValueTypeDesc() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- getValueTypeDesc() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method that returns description of the value type this instantiator
handles.
- getValueTypeDeserializer() - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- getViews() - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- getVisibilityChecker() - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- getVisibilityChecker() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method for accessing currently configured visibility checker;
object used for determining whether given property element
(method, field, constructor) can be auto-detected or not.
- getWithArgsCreator() - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- getWithArgsCreator() - Method in class org.codehaus.jackson.map.deser.ValueInstantiator
-
Method that can be called to try to access member (constructor,
static factory method) that is used as the "non-default creator"
(constructor or factory method that takes one or more arguments).
- growArrayBy(int[], int) - Static method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- idFromBaseType() - Method in class org.codehaus.jackson.map.jsontype.impl.TypeIdResolverBase
-
- idFromValue(Object) - Method in class org.codehaus.jackson.map.jsontype.impl.ClassNameIdResolver
-
- idFromValue(Object) - Method in class org.codehaus.jackson.map.jsontype.impl.MinimalClassNameIdResolver
-
- idFromValue(Object) - Method in class org.codehaus.jackson.map.jsontype.impl.TypeNameIdResolver
-
- idFromValue(Object) - Method in interface org.codehaus.jackson.map.jsontype.TypeIdResolver
-
Method called to serialize type of the type of given value
as a String to include in serialized JSON content.
- idFromValueAndType(Object, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.ClassNameIdResolver
-
- idFromValueAndType(Object, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.TypeNameIdResolver
-
- idFromValueAndType(Object, Class<?>) - Method in interface org.codehaus.jackson.map.jsontype.TypeIdResolver
-
Alternative method used for determining type from combination of
value and type, using suggested type (that serializer provides)
and possibly value of that type.
- idResolver(MapperConfig<?>, JavaType, Collection<NamedType>, boolean, boolean) - Method in class org.codehaus.jackson.map.jsontype.impl.StdTypeResolverBuilder
-
Helper method that will either return configured custom
type id resolver, or construct a standard resolver
given configuration.
- implement(boolean) - Method in class org.codehaus.jackson.mrbean.BeanBuilder
-
- inArray() - Method in class org.codehaus.jackson.JsonStreamContext
-
Method that returns true if this context is an Array context;
that is, content is being read from or written to a Json Array.
- includeMethod(Method) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector.GetterMethodFilter
-
Deprecated.
- includeMethod(Method) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector.SetterAndGetterMethodFilter
-
Deprecated.
- includeMethod(Method) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector.SetterMethodFilter
-
Deprecated.
- includeMethod(Method) - Method in interface org.codehaus.jackson.map.introspect.MethodFilter
-
- inclusion(JsonTypeInfo.As) - Method in class org.codehaus.jackson.map.jsontype.impl.StdTypeResolverBuilder
-
- inclusion(JsonTypeInfo.As) - Method in interface org.codehaus.jackson.map.jsontype.TypeResolverBuilder
-
Method for specifying mechanism to use for including type metadata
in JSON.
- indentArraysWith(Indenter) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
- Indenter - Interface in org.codehaus.jackson.impl
-
Interface that defines objects that can produce indentation used
to separate object entries and array values.
- indentObjectsWith(Indenter) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
- index - Variable in class org.codehaus.jackson.smile.SmileGenerator.SharedStringNode
-
- indexedListSerializer(JavaType, boolean, TypeSerializer, BeanProperty, JsonSerializer<Object>) - Static method in class org.codehaus.jackson.map.ser.std.StdContainerSerializers
-
- IndexedStringListSerializer - Class in org.codehaus.jackson.map.ser.std
-
Efficient implementation for serializing
List
s that contains Strings and are random-accessible.
- IndexedStringListSerializer(BeanProperty) - Constructor for class org.codehaus.jackson.map.ser.std.IndexedStringListSerializer
-
- IndexedStringListSerializer(BeanProperty, JsonSerializer<?>) - Constructor for class org.codehaus.jackson.map.ser.std.IndexedStringListSerializer
-
- InetAddressSerializer - Class in org.codehaus.jackson.map.ser.std
-
- InetAddressSerializer() - Constructor for class org.codehaus.jackson.map.ser.std.InetAddressSerializer
-
- init(JsonTypeInfo.Id, TypeIdResolver) - Method in class org.codehaus.jackson.map.jsontype.impl.StdTypeResolverBuilder
-
- init(JavaType) - Method in class org.codehaus.jackson.map.jsontype.impl.TypeIdResolverBase
-
- init(JavaType) - Method in interface org.codehaus.jackson.map.jsontype.TypeIdResolver
-
Method that will be called once before any type resolution calls;
used to initialize instance with configuration.
- init(JsonTypeInfo.Id, TypeIdResolver) - Method in interface org.codehaus.jackson.map.jsontype.TypeResolverBuilder
-
Initialization method that is called right after constructing
the builder instance.
- initialCapacity() - Method in class org.codehaus.jackson.map.util.ObjectBuffer
-
Helper method that can be used to check how much free capacity
will this instance start with.
- inject(DeserializationContext, Object) - Method in class org.codehaus.jackson.map.deser.impl.CreatorProperty
-
Method to find value to inject, and inject it to this property.
- inject(SettableBeanProperty[]) - Method in class org.codehaus.jackson.map.deser.impl.PropertyValueBuffer
-
- inject(DeserializationContext, Object) - Method in class org.codehaus.jackson.map.deser.impl.ValueInjector
-
- InjectableValues - Class in org.codehaus.jackson.map
-
Abstract class that defines API for objects that provide value to
"inject" during deserialization.
- InjectableValues() - Constructor for class org.codehaus.jackson.map.InjectableValues
-
- InjectableValues.Std - Class in org.codehaus.jackson.map
-
Simple standard implementation which uses a simple Map to
store values to inject, identified by simple String keys.
- InjectableValues.Std() - Constructor for class org.codehaus.jackson.map.InjectableValues.Std
-
- InjectableValues.Std(Map<String, Object>) - Constructor for class org.codehaus.jackson.map.InjectableValues.Std
-
- injectValues(DeserializationContext, Object) - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
- inLongRange(char[], int, int, boolean) - Static method in class org.codehaus.jackson.io.NumberInput
-
Helper method for determining if given String representation of
an integral number would fit in 64-bit Java long or not.
- inLongRange(String, boolean) - Static method in class org.codehaus.jackson.io.NumberInput
-
- inObject() - Method in class org.codehaus.jackson.JsonStreamContext
-
Method that returns true if this context is an Object context;
that is, content is being read from or written to a Json Object.
- InputAccessor - Interface in org.codehaus.jackson.format
-
Interface used to expose beginning of a data file to data format
detection code.
- InputAccessor.Std - Class in org.codehaus.jackson.format
-
Basic implementation that reads data from given
InputStream
and buffers it as necessary.
- InputAccessor.Std(InputStream, byte[]) - Constructor for class org.codehaus.jackson.format.InputAccessor.Std
-
Constructor used when content to check is available via
input stream and must be read.
- InputAccessor.Std(byte[]) - Constructor for class org.codehaus.jackson.format.InputAccessor.Std
-
Constructor used when the full input (or at least enough leading bytes
of full input) is available.
- InputDecorator - Class in org.codehaus.jackson.io
-
Handler class that can be used to decorate input sources.
- InputDecorator() - Constructor for class org.codehaus.jackson.io.InputDecorator
-
- inRoot() - Method in class org.codehaus.jackson.JsonStreamContext
-
Method that returns true if this context is a Root context;
that is, content is being read from or written to without
enclosing array or object structure.
- insert(int, JsonNode) - Method in class org.codehaus.jackson.node.ArrayNode
-
Method for inserting specified child node as an element
of this Array.
- insert(int, int) - Method in class org.codehaus.jackson.node.ArrayNode
-
Method for setting value of a field to specified numeric value.
- insert(int, Integer) - Method in class org.codehaus.jackson.node.ArrayNode
-
Alternative method that we need to avoid bumping into NPE issues
with auto-unboxing.
- insert(int, long) - Method in class org.codehaus.jackson.node.ArrayNode
-
Method for setting value of a field to specified numeric value.
- insert(int, Long) - Method in class org.codehaus.jackson.node.ArrayNode
-
Alternative method that we need to avoid bumping into NPE issues
with auto-unboxing.
- insert(int, float) - Method in class org.codehaus.jackson.node.ArrayNode
-
Method for setting value of a field to specified numeric value.
- insert(int, Float) - Method in class org.codehaus.jackson.node.ArrayNode
-
Alternative method that we need to avoid bumping into NPE issues
with auto-unboxing.
- insert(int, double) - Method in class org.codehaus.jackson.node.ArrayNode
-
Method for setting value of a field to specified numeric value.
- insert(int, Double) - Method in class org.codehaus.jackson.node.ArrayNode
-
Alternative method that we need to avoid bumping into NPE issues
with auto-unboxing.
- insert(int, BigDecimal) - Method in class org.codehaus.jackson.node.ArrayNode
-
Method for setting value of a field to specified numeric value.
- insert(int, String) - Method in class org.codehaus.jackson.node.ArrayNode
-
Method for setting value of a field to specified String value.
- insert(int, boolean) - Method in class org.codehaus.jackson.node.ArrayNode
-
Method for setting value of a field to specified String value.
- insert(int, Boolean) - Method in class org.codehaus.jackson.node.ArrayNode
-
Alternative method that we need to avoid bumping into NPE issues
with auto-unboxing.
- insert(int, byte[]) - Method in class org.codehaus.jackson.node.ArrayNode
-
Method for setting value of a field to specified binary value
- insertAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.MapperConfig
-
- insertAnnotationIntrospector(AnnotationIntrospector) - Method in interface org.codehaus.jackson.map.Module.SetupContext
-
Method for registering specified
AnnotationIntrospector
as the highest
priority introspector (will be chained with existing introspector(s) which
will be used as fallbacks for cases this introspector does not handle)
- insertArray(int) - Method in class org.codehaus.jackson.node.ArrayNode
-
- insertInList(T[], T) - Static method in class org.codehaus.jackson.map.util.ArrayBuilders
-
Helper method for constructing a new array that contains specified
element followed by contents of the given array.
- insertInListNoDup(T[], T) - Static method in class org.codehaus.jackson.map.util.ArrayBuilders
-
Helper method for constructing a new array that contains specified
element followed by contents of the given array but never contains
duplicates.
- insertNull(int) - Method in class org.codehaus.jackson.node.ArrayNode
-
- insertObject(int) - Method in class org.codehaus.jackson.node.ArrayNode
-
Method that will construct an ObjectNode and add it at the end
of this array node.
- insertPOJO(int, Object) - Method in class org.codehaus.jackson.node.ArrayNode
-
Method that will construct a POJONode and add it at the end
of this array node.
- instance - Static variable in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Globally shareable thread-safe instance which has no additional custom deserializers
registered
- instance - Static variable in class org.codehaus.jackson.map.deser.JsonNodeDeserializer
-
- instance - Static variable in class org.codehaus.jackson.map.ext.OptionalHandlerFactory
-
- instance - Static variable in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
- instance - Static variable in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
Static immutable and shareable instance that can be used as
"null" introspector: one that never finds any annotation
information.
- instance - Static variable in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Like
BasicSerializerFactory
, this factory is stateless, and
thus a single shared global (== singleton) instance can be used
without thread-safety issues.
- instance() - Method in class org.codehaus.jackson.map.ser.impl.ReadOnlyClassToSerializerMap
-
- instance - Static variable in class org.codehaus.jackson.map.ser.std.CalendarSerializer
-
- instance - Static variable in class org.codehaus.jackson.map.ser.std.DateSerializer
-
- instance - Static variable in class org.codehaus.jackson.map.ser.std.InetAddressSerializer
-
- instance - Static variable in class org.codehaus.jackson.map.ser.std.NullSerializer
-
- instance - Static variable in class org.codehaus.jackson.map.ser.std.SerializableSerializer
-
- instance - Static variable in class org.codehaus.jackson.map.ser.std.SerializableWithTypeSerializer
-
- instance - Static variable in class org.codehaus.jackson.map.ser.std.StdKeySerializers.CalendarKeySerializer
-
- instance - Static variable in class org.codehaus.jackson.map.ser.std.StdKeySerializers.DateKeySerializer
-
- instance - Static variable in class org.codehaus.jackson.map.ser.std.TimeZoneSerializer
-
- instance - Static variable in class org.codehaus.jackson.map.ser.std.ToStringSerializer
-
Singleton instance to use.
- instance - Static variable in class org.codehaus.jackson.map.ser.StdSerializers.NumberSerializer
-
- instance - Static variable in class org.codehaus.jackson.map.ser.ToStringSerializer
-
Deprecated.
- instance - Static variable in class org.codehaus.jackson.map.type.TypeFactory
-
Deprecated.
As of 1.8, should use a per-ObjectMapper instance instead
of global singleton
- instance - Static variable in class org.codehaus.jackson.map.util.StdDateFormat
-
A singleton instance can be used for cloning purposes.
- instance() - Static method in class org.codehaus.jackson.node.ContainerNode.NoNodesIterator
-
- instance() - Static method in class org.codehaus.jackson.node.ContainerNode.NoStringsIterator
-
- instance - Static variable in class org.codehaus.jackson.node.JsonNodeFactory
-
Default singleton instance that construct "standard" node instances:
given that this class is stateless, a globally shared singleton
can be used.
- instance - Static variable in class org.codehaus.jackson.node.NullNode
-
- instance - Static variable in class org.codehaus.jackson.util.InternCache
-
- instantiateBean(boolean) - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Method called to create a "default instance" of the bean, currently
only needed for obtaining default field values which may be used for
suppressing serialization of fields that have "not changed".
- instantiationException(Class<?>, Throwable) - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- instantiationException(Class<?>, String) - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- instantiationException(Class<?>, Throwable) - Method in class org.codehaus.jackson.map.DeserializationContext
-
Helper method for constructing instantiation exception for specified type,
to indicate problem with physically constructing instance of
specified class (missing constructor, exception from constructor)
- instantiationException(Class<?>, String) - Method in class org.codehaus.jackson.map.DeserializationContext
-
- INT_0 - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_1 - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_2 - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_3 - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_4 - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_5 - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_6 - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_7 - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_8 - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_9 - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_APOSTROPHE - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_ASTERISK - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_b - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_BACKSLASH - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_COLON - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_COMMA - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_CR - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_DECIMAL_POINT - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_DESC - Static variable in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
- INT_e - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_E - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_f - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_LBRACKET - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_LCURLY - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_LF - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_MARKER_END_OF_STRING - Static variable in class org.codehaus.jackson.smile.SmileConstants
-
We need a byte marker to denote end of variable-length Strings.
- INT_MINUS - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_n - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_PLUS - Static variable in class org.codehaus.jackson.impl.JsonParserBase
-
- INT_QUOTE - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_r - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_RBRACKET - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_RCURLY - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_SLASH - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_SPACE - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_t - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_TAB - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- INT_u - Static variable in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- intern(String) - Method in class org.codehaus.jackson.util.InternCache
-
- InternCache - Class in org.codehaus.jackson.util
-
Singleton class that adds a simple first-level cache in front of
regular String.intern() functionality.
- IntNode - Class in org.codehaus.jackson.node
-
Numeric node that contains simple 32-bit integer values.
- IntNode(int) - Constructor for class org.codehaus.jackson.node.IntNode
-
- introspect(JavaType) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
Method that will introspect full bean properties for the purpose
of building a bean deserializer
- introspect(JavaType) - Method in class org.codehaus.jackson.map.SerializationConfig
-
Method that will introspect full bean properties for the purpose
of building a bean serializer
- introspectClassAnnotations(JavaType) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
Accessor for getting bean description that only contains class
annotations: useful if no getter/setter/creator information is needed.
- introspectClassAnnotations(Class<?>) - Method in class org.codehaus.jackson.map.MapperConfig
-
Accessor for getting bean description that only contains class
annotations: useful if no getter/setter/creator information is needed.
- introspectClassAnnotations(JavaType) - Method in class org.codehaus.jackson.map.MapperConfig
-
Accessor for getting bean description that only contains class
annotations: useful if no getter/setter/creator information is needed.
- introspectClassAnnotations(JavaType) - Method in class org.codehaus.jackson.map.SerializationConfig
-
Accessor for getting bean description that only contains class
annotations: useful if no getter/setter/creator information is needed.
- introspectDirectClassAnnotations(JavaType) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
Accessor for getting bean description that only contains immediate class
annotations: ones from the class, and its direct mix-in, if any, but
not from super types.
- introspectDirectClassAnnotations(Class<?>) - Method in class org.codehaus.jackson.map.MapperConfig
-
Accessor for getting bean description that only contains immediate class
annotations: ones from the class, and its direct mix-in, if any, but
not from super types.
- introspectDirectClassAnnotations(JavaType) - Method in class org.codehaus.jackson.map.MapperConfig
-
Accessor for getting bean description that only contains immediate class
annotations: ones from the class, and its direct mix-in, if any, but
not from super types.
- introspectDirectClassAnnotations(JavaType) - Method in class org.codehaus.jackson.map.SerializationConfig
-
Accessor for getting bean description that only contains immediate class
annotations: ones from the class, and its direct mix-in, if any, but
not from super types.
- introspectForCreation(JavaType) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
Method that will introspect subset of bean properties needed to
construct bean instance.
- IOContext - Class in org.codehaus.jackson.io
-
To limit number of configuration and state objects to pass, all
contextual objects that need to be passed by the factory to
readers and writers are combined under this object.
- IOContext(BufferRecycler, Object, boolean) - Constructor for class org.codehaus.jackson.io.IOContext
-
- isAbstract() - Method in class org.codehaus.jackson.map.type.ArrayType
-
For some odd reason, modifiers for array classes would
claim they are abstract types.
- isAbstract() - Method in class org.codehaus.jackson.type.JavaType
-
- isAnnotationProcessingEnabled() - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- isAnnotationProcessingEnabled() - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for determining whether annotation processing is enabled or not
(default settings are typically that it is enabled; must explicitly disable).
- isAnnotationProcessingEnabled() - Method in class org.codehaus.jackson.map.SerializationConfig
-
- isArray() - Method in class org.codehaus.jackson.JsonNode
-
- isArray() - Method in class org.codehaus.jackson.node.ArrayNode
-
- isArrayType() - Method in class org.codehaus.jackson.map.type.ArrayType
-
- isArrayType() - Method in class org.codehaus.jackson.type.JavaType
-
- isBackReference() - Method in class org.codehaus.jackson.map.AnnotationIntrospector.ReferenceProperty
-
- isBigDecimal() - Method in class org.codehaus.jackson.JsonNode
-
- isBigDecimal() - Method in class org.codehaus.jackson.node.DecimalNode
-
- isBigEndian() - Method in enum org.codehaus.jackson.JsonEncoding
-
Whether encoding is big-endian (if encoding supports such
notion).
- isBigInteger() - Method in class org.codehaus.jackson.JsonNode
-
- isBigInteger() - Method in class org.codehaus.jackson.node.BigIntegerNode
-
- isBinary() - Method in class org.codehaus.jackson.JsonNode
-
Method that can be used to check if this node represents
binary data (Base64 encoded).
- isBinary() - Method in class org.codehaus.jackson.node.BinaryNode
-
- isBoolean() - Method in class org.codehaus.jackson.JsonNode
-
Method that can be used to check if this node was created from
Json boolean value (literals "true" and "false").
- isBoolean() - Method in class org.codehaus.jackson.node.BooleanNode
-
- isCglibGetCallbacks(AnnotatedMethod) - Static method in class org.codehaus.jackson.map.util.BeanUtil
-
This method was added to address [JACKSON-53]: need to weed out
CGLib-injected "getCallbacks".
- isClosed() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- isClosed() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- isClosed() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- isClosed() - Method in class org.codehaus.jackson.JsonGenerator
-
Method that can be called to determine whether this generator
is closed or not.
- isClosed() - Method in class org.codehaus.jackson.JsonParser
-
Method that can be called to determine whether this parser
is closed or not.
- isClosed() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- isClosed() - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- isClosed() - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- isClosed() - Method in class org.codehaus.jackson.util.TokenBuffer
-
- isClosed() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- isCollectionLikeType() - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- isCollectionLikeType() - Method in class org.codehaus.jackson.type.JavaType
-
- isCollectionMapOrArray(Class<?>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
- isConcrete() - Method in class org.codehaus.jackson.map.type.ArrayType
-
For some odd reason, modifiers for array classes would
claim they are abstract types.
- isConcrete(Class<?>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Helper method that checks if given class is a concrete one;
that is, not an interface or abstract class.
- isConcrete(Member) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
- isConcrete(Member) - Static method in class org.codehaus.jackson.mrbean.BeanUtil
-
- isConcrete() - Method in class org.codehaus.jackson.type.JavaType
-
- isContainerNode() - Method in class org.codehaus.jackson.JsonNode
-
Method that returns true for container nodes: Arrays and Objects.
- isContainerNode() - Method in class org.codehaus.jackson.node.ContainerNode
-
- isContainerType() - Method in class org.codehaus.jackson.map.type.ArrayType
-
- isContainerType() - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- isContainerType() - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- isContainerType() - Method in class org.codehaus.jackson.map.type.SimpleType
-
- isContainerType() - Method in class org.codehaus.jackson.type.JavaType
-
- isCreatorVisible(Member) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Method for checking whether given method is auto-detectable
as Creator, with respect to its visibility (not considering
method signature or name, just visibility)
- isCreatorVisible(AnnotatedMember) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
- isCreatorVisible(Member) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- isCreatorVisible(AnnotatedMember) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- isDefaultSerializer(JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
Method that can be called to determine if given deserializer is the default
deserializer Jackson uses; as opposed to a custom deserializer installed by
a module or calling application.
- isDefaultSerializer(JsonSerializer<?>) - Method in class org.codehaus.jackson.map.ser.std.SerializerBase
-
Method that can be called to determine if given serializer is the default
serializer Jackson uses; as opposed to a custom serializer installed by
a module or calling application.
- isDouble() - Method in class org.codehaus.jackson.JsonNode
-
- isDouble() - Method in class org.codehaus.jackson.node.DoubleNode
-
- isEmpty() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethodMap
-
- isEnabled(JsonGenerator.Feature) - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- isEnabled(JsonParser.Feature) - Method in class org.codehaus.jackson.JsonFactory
-
Checked whether specified parser feature is enabled.
- isEnabled(JsonGenerator.Feature) - Method in class org.codehaus.jackson.JsonFactory
-
Check whether specified generator feature is enabled.
- isEnabled(JsonGenerator.Feature) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for checking whether given feature is enabled.
- isEnabled(JsonParser.Feature) - Method in class org.codehaus.jackson.JsonParser
-
- isEnabled(DeserializationConfig.Feature) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- isEnabled(DeserializationConfig.Feature) - Method in class org.codehaus.jackson.map.DeserializationContext
-
Convenience method for checking whether specified on/off
feature is enabled
- isEnabled(MapperConfig.ConfigFeature) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for checking whether given feature is enabled or not
- isEnabled(DeserializationConfig.Feature) - Method in interface org.codehaus.jackson.map.Module.SetupContext
-
- isEnabled(SerializationConfig.Feature) - Method in interface org.codehaus.jackson.map.Module.SetupContext
-
- isEnabled(JsonParser.Feature) - Method in interface org.codehaus.jackson.map.Module.SetupContext
-
- isEnabled(JsonGenerator.Feature) - Method in interface org.codehaus.jackson.map.Module.SetupContext
-
- isEnabled(SerializationConfig.Feature) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Convenience method, equivalent to:
- isEnabled(DeserializationConfig.Feature) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Convenience method, equivalent to:
- isEnabled(JsonParser.Feature) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Convenience method, equivalent to:
- isEnabled(JsonGenerator.Feature) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Convenience method, equivalent to:
- isEnabled(SerializationConfig.Feature) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- isEnabled(SerializationConfig.Feature) - Method in class org.codehaus.jackson.map.SerializerProvider
-
Convenience method for checking whether specified serialization
feature is enabled or not.
- isEnabled(AbstractTypeMaterializer.Feature) - Method in class org.codehaus.jackson.mrbean.AbstractTypeMaterializer
-
Method for checking whether given feature is enabled or not
- isEnabled(SmileParser.Feature) - Method in class org.codehaus.jackson.smile.SmileFactory
-
Checked whether specified parser feature is enabled.
- isEnabled(SmileGenerator.Feature) - Method in class org.codehaus.jackson.smile.SmileFactory
-
Check whether specified generator feature is enabled.
- isEnabled(SmileGenerator.Feature) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- isEnabled(JsonGenerator.Feature) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- isEnabled(JsonParser.Feature) - Method in class org.codehaus.jackson.util.JsonParserDelegate
-
- isEnabled(JsonGenerator.Feature) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- isEnumType() - Method in class org.codehaus.jackson.type.JavaType
-
- isExpectedStartArrayToken() - Method in class org.codehaus.jackson.JsonParser
-
Specialized accessor that can be used to verify that the current
token indicates start array (usually meaning that current token
is
JsonToken.START_ARRAY
) when start array is expected.
- isExplicitlyIncluded() - Method in class org.codehaus.jackson.map.BeanPropertyDefinition
-
Accessor that can be called to check whether property was included
due to an explicit marker (usually annotation), or just by naming
convention.
- isExplicitlyIncluded() - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- isFactoryMethod(AnnotatedMethod) - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- isFeatureEnabled(JsonGenerator.Feature) - Method in class org.codehaus.jackson.JsonGenerator
-
- isFeatureEnabled(JsonParser.Feature) - Method in class org.codehaus.jackson.JsonParser
-
- isFieldVisible(Field) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Method for checking whether given field is auto-detectable
as property, with respect to its visibility (not considering
method signature or name, just visibility)
- isFieldVisible(AnnotatedField) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
- isFieldVisible(Field) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- isFieldVisible(AnnotatedField) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- isFinal() - Method in class org.codehaus.jackson.type.JavaType
-
- isFloatingPointNumber() - Method in class org.codehaus.jackson.JsonNode
-
- isFloatingPointNumber() - Method in class org.codehaus.jackson.node.DecimalNode
-
- isFloatingPointNumber() - Method in class org.codehaus.jackson.node.DoubleNode
-
- isGeneratorFeatureEnabled(JsonGenerator.Feature) - Method in class org.codehaus.jackson.JsonFactory
-
- isGeneric() - Method in class org.codehaus.jackson.map.type.HierarchicType
-
- isGetterEnabled() - Method in enum org.codehaus.jackson.annotate.JsonMethod
-
- isGetterVisible(Method) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Method for checking whether given method is auto-detectable
as regular getter, with respect to its visibility (not considering
method signature or name, just visibility)
- isGetterVisible(AnnotatedMethod) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
- isGetterVisible(Method) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- isGetterVisible(AnnotatedMethod) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- isGroovyMetaClassGetter(AnnotatedMethod) - Static method in class org.codehaus.jackson.map.util.BeanUtil
-
Another helper method to deal with rest of [JACKSON-103]
- isGroovyMetaClassSetter(AnnotatedMethod) - Static method in class org.codehaus.jackson.map.util.BeanUtil
-
- isHandled(Annotation) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method called by framework to determine whether given annotation
is handled by this introspector.
- isHandled(Annotation) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- isHandled(Annotation) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- isHandled(Annotation) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- isHandled(Annotation) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
An annotation is handled if it's in the same package as @XmlElement, including subpackages.
- isIgnorableConstructor(AnnotatedConstructor) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
- isIgnorableConstructor(AnnotatedConstructor) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- isIgnorableConstructor(AnnotatedConstructor) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- isIgnorableConstructor(AnnotatedConstructor) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- isIgnorableConstructor(AnnotatedConstructor) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- isIgnorableField(AnnotatedField) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking whether there is an annotation that
indicates that given field should be ignored for all
operations (serialization, deserialization).
- isIgnorableField(AnnotatedField) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- isIgnorableField(AnnotatedField) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- isIgnorableField(AnnotatedField) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- isIgnorableField(AnnotatedField) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- isIgnorableMethod(AnnotatedMethod) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking whether there is an annotation that
indicates that given method should be ignored for all
operations (serialization, deserialization).
- isIgnorableMethod(AnnotatedMethod) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- isIgnorableMethod(AnnotatedMethod) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- isIgnorableMethod(AnnotatedMethod) - Method in class org.codehaus.jackson.map.introspect.NopAnnotationIntrospector
-
- isIgnorableMethod(AnnotatedMethod) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- isIgnorableType(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector
-
Method for checking whether properties that have specified type
(class, not generics aware) should be completely ignored for
serialization and deserialization purposes.
- isIgnorableType(AnnotatedClass) - Method in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- isIgnorableType(DeserializationConfig, BasicBeanDescription, Class<?>, Map<Class<?>, Boolean>) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Helper method that will check whether given raw type is marked as always ignorable
(for purpose of ignoring properties with type)
- isIgnorableType(AnnotatedClass) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- isIgnorableType(AnnotatedClass) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- isIndexedList(Class<?>) - Method in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
- isInline() - Method in interface org.codehaus.jackson.impl.Indenter
-
- isInline() - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter.FixedSpaceIndenter
-
- isInline() - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter.Lf2SpacesIndenter
-
- isInline() - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter.NopIndenter
-
- isInt() - Method in class org.codehaus.jackson.JsonNode
-
- isInt() - Method in class org.codehaus.jackson.node.IntNode
-
- isIntegralNumber() - Method in class org.codehaus.jackson.JsonNode
-
- isIntegralNumber() - Method in class org.codehaus.jackson.node.BigIntegerNode
-
- isIntegralNumber() - Method in class org.codehaus.jackson.node.IntNode
-
- isIntegralNumber() - Method in class org.codehaus.jackson.node.LongNode
-
- isInterface() - Method in class org.codehaus.jackson.type.JavaType
-
- isIsGetterVisible(Method) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Method for checking whether given method is auto-detectable
as is-getter, with respect to its visibility (not considering
method signature or name, just visibility)
- isIsGetterVisible(AnnotatedMethod) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
- isIsGetterVisible(Method) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- isIsGetterVisible(AnnotatedMethod) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- isJsonType(MediaType) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
Helper method used to check whether given media type
is JSON type or sub type.
- isLocalType(Class<?>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Deprecated.
since 1.9, use variant that takes second argument
- isLocalType(Class<?>, boolean) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
- isLong() - Method in class org.codehaus.jackson.JsonNode
-
- isLong() - Method in class org.codehaus.jackson.node.LongNode
-
- isManagedReference() - Method in class org.codehaus.jackson.map.AnnotationIntrospector.ReferenceProperty
-
- isMapLikeType() - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- isMapLikeType() - Method in class org.codehaus.jackson.type.JavaType
-
- isMissingNode() - Method in class org.codehaus.jackson.JsonNode
-
Method that returns true for "virtual" nodes which represent
missing entries constructed by path accessor methods when
there is no actual node matching given criteria.
- isMissingNode() - Method in class org.codehaus.jackson.node.MissingNode
-
- isNaturalTypeWithStdHandling(JavaType, JsonSerializer<?>) - Method in class org.codehaus.jackson.map.ser.std.JsonValueSerializer
-
- isNull() - Method in class org.codehaus.jackson.JsonNode
-
Method that can be used to check if this node was created from
Json liternal null value.
- isNull() - Method in class org.codehaus.jackson.node.NullNode
-
- isNumber() - Method in class org.codehaus.jackson.JsonNode
-
- isNumber() - Method in class org.codehaus.jackson.node.NumericNode
-
- isNumeric() - Method in enum org.codehaus.jackson.JsonToken
-
- ISO8601DateFormat - Class in org.codehaus.jackson.map.util
-
Provide a fast thread-safe formatter/parser DateFormat for ISO8601 dates ONLY.
- ISO8601DateFormat() - Constructor for class org.codehaus.jackson.map.util.ISO8601DateFormat
-
- ISO8601Utils - Class in org.codehaus.jackson.map.util
-
Utilities methods for manipulating dates in iso8601 format.
- ISO8601Utils() - Constructor for class org.codehaus.jackson.map.util.ISO8601Utils
-
- isObject() - Method in class org.codehaus.jackson.JsonNode
-
- isObject() - Method in class org.codehaus.jackson.node.ObjectNode
-
- isParserFeatureEnabled(JsonParser.Feature) - Method in class org.codehaus.jackson.JsonFactory
-
- isPojo() - Method in class org.codehaus.jackson.JsonNode
-
Method that can be used to check if the node is a wrapper
for a POJO ("Plain Old Java Object" aka "bean".
- isPojo() - Method in class org.codehaus.jackson.node.POJONode
-
- isPotentialBeanType(Class<?>) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Helper method used to skip processing for types that we know
can not be (i.e.
- isPotentialBeanType(Class<?>) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Helper method used to skip processing for types that we know
can not be (i.e.
- isPrimitive() - Method in class org.codehaus.jackson.type.JavaType
-
- isProxyType(Class<?>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Helper method used to weed out dynamic Proxy types; types that do
not expose concrete method API that we could use to figure out
automatic Bean (property) based serialization.
- isPublic() - Method in class org.codehaus.jackson.map.introspect.Annotated
-
- isReadable(Class<?>, Type, Annotation[], MediaType) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
Method that JAX-RS container calls to try to check whether
values of given type (and media type) can be deserialized by
this provider.
- isResourceManaged() - Method in class org.codehaus.jackson.io.IOContext
-
- isScalarValue() - Method in enum org.codehaus.jackson.JsonToken
-
Method that can be used to check whether this token represents
a valid non-structured value.
- isSetterVisible(Method) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Method for checking whether given method is auto-detectable
as setter, with respect to its visibility (not considering
method signature or name, just visibility)
- isSetterVisible(AnnotatedMethod) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
- isSetterVisible(Method) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- isSetterVisible(AnnotatedMethod) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- isSnapshot() - Method in class org.codehaus.jackson.Version
-
- isTextual() - Method in class org.codehaus.jackson.JsonNode
-
- isTextual() - Method in class org.codehaus.jackson.node.TextNode
-
Yes indeed it is textual
- isThrowable() - Method in class org.codehaus.jackson.type.JavaType
-
- isTrueCollectionType() - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
Method that can be used for checking whether this type is a
"real" Collection type; meaning whether it represents a parameterized
subtype of
Collection
or just something that acts
like one.
- isTrueMapType() - Method in class org.codehaus.jackson.map.type.MapLikeType
-
Method that can be used for checking whether this type is a
"real" Collection type; meaning whether it represents a parameterized
subtype of
Collection
or just something that acts
like one.
- isUknownVersion() - Method in class org.codehaus.jackson.Version
-
- isUnwrappingSerializer() - Method in class org.codehaus.jackson.map.JsonSerializer
-
Accessor for checking whether this serializer is an
"unwrapping" serializer; this is necessary to know since
it may also require caller to suppress writing of the
leading property name.
- isUnwrappingSerializer() - Method in class org.codehaus.jackson.map.ser.impl.UnwrappingBeanSerializer
-
- isValueNode() - Method in class org.codehaus.jackson.JsonNode
-
Method that returns true for all value nodes: ones that
are not containers, and that do not represent "missing" nodes
in the path.
- isValueNode() - Method in class org.codehaus.jackson.node.ValueNode
-
- isVisible(Member) - Method in enum org.codehaus.jackson.annotate.JsonAutoDetect.Visibility
-
- isWriteable(Class<?>, Type, Annotation[], MediaType) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
Method that JAX-RS container calls to try to check whether
given value (of specified type) can be serialized by
this provider.
- IterableSerializer - Class in org.codehaus.jackson.map.ser.std
-
- IterableSerializer(JavaType, boolean, TypeSerializer, BeanProperty) - Constructor for class org.codehaus.jackson.map.ser.std.IterableSerializer
-
- iterableSerializer(JavaType, boolean, TypeSerializer, BeanProperty) - Static method in class org.codehaus.jackson.map.ser.std.StdContainerSerializers
-
- iterator() - Method in class org.codehaus.jackson.JsonNode
-
Same as calling
JsonNode.getElements()
; implemented so that
convenience "for-each" loop can be used for looping over elements
of JSON Array constructs.
- iterator() - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethodMap
-
- iteratorSerializer(JavaType, boolean, TypeSerializer, BeanProperty) - Static method in class org.codehaus.jackson.map.ser.std.StdContainerSerializers
-
- weirdKeyException(Class<?>, String, String) - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- weirdKeyException(Class<?>, String, String) - Method in class org.codehaus.jackson.map.DeserializationContext
-
Helper method for constructing exception to indicate that given JSON
Object field name was not in format to be able to deserialize specified
key type.
- weirdNumberException(Class<?>, String) - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- weirdNumberException(Class<?>, String) - Method in class org.codehaus.jackson.map.DeserializationContext
-
Helper method for constructing exception to indicate that input JSON
Number was not suitable for deserializing into given type.
- weirdStringException(Class<?>, String) - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
Method that will construct an exception suitable for throwing when
some String values are acceptable, but the one encountered is not
- weirdStringException(Class<?>, String) - Method in class org.codehaus.jackson.map.DeserializationContext
-
Helper method for constructing exception to indicate that input JSON
String was not in recognized format for deserializing into given type.
- widenBy(Class<?>) - Method in class org.codehaus.jackson.type.JavaType
-
Method that can be called to do a "widening" conversions; that is,
to return a type with a raw class that could be assigned from this
type.
- widenContentsBy(Class<?>) - Method in class org.codehaus.jackson.map.type.ArrayType
-
- widenContentsBy(Class<?>) - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- widenContentsBy(Class<?>) - Method in class org.codehaus.jackson.map.type.CollectionType
-
- widenContentsBy(Class<?>) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- widenContentsBy(Class<?>) - Method in class org.codehaus.jackson.map.type.MapType
-
- widenContentsBy(Class<?>) - Method in class org.codehaus.jackson.map.type.SimpleType
-
- widenContentsBy(Class<?>) - Method in class org.codehaus.jackson.type.JavaType
-
- widenKey(Class<?>) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- widenKey(Class<?>) - Method in class org.codehaus.jackson.map.type.MapType
-
- willFailOnUnknownId() - Method in class org.codehaus.jackson.map.ser.impl.SimpleFilterProvider
-
- with(String) - Method in class org.codehaus.jackson.JsonNode
-
Method that can be called on object nodes, to access a property
that has object value; or if no such property exists, to create and
return such object node.
- with(DeserializationConfig.Feature...) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
Fluent factory method that will construct and return a new configuration
object instance with specified features enabled.
- with(JsonAutoDetect) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- with(JsonAutoDetect.Visibility) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- with(JsonAutoDetect) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Builder method that will return an instance that has same
settings as this instance has, except for values that
given annotation overrides.
- with(JsonAutoDetect.Visibility) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Builder method that will create and return an instance that has specified
JsonAutoDetect.Visibility
value to use for all property elements.
- with(SerializationConfig.Feature...) - Method in class org.codehaus.jackson.map.SerializationConfig
-
Fluent factory method that will construct and return a new configuration
object instance with specified features enabled.
- with(String) - Method in class org.codehaus.jackson.node.ObjectNode
-
- withAbstractTypeResolver(AbstractTypeResolver) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory.ConfigImpl
-
- withAbstractTypeResolver(AbstractTypeResolver) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- withAbstractTypeResolver(AbstractTypeResolver) - Method in class org.codehaus.jackson.map.DeserializerFactory.Config
-
Fluent/factory method used to construct a configuration object that
has same configuration as this instance plus one additional
abstract type resolver.
- withAbstractTypeResolver(AbstractTypeResolver) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
- withAbstractTypeResolver(AbstractTypeResolver) - Method in class org.codehaus.jackson.map.DeserializerProvider
-
- withAdditionalDeserializers(Deserializers) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory.ConfigImpl
-
- withAdditionalDeserializers(Deserializers) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- withAdditionalDeserializers(Deserializers) - Method in class org.codehaus.jackson.map.DeserializerFactory.Config
-
Fluent/factory method used to construct a configuration object that
has same deserializer providers as this instance, plus one specified
as argument.
- withAdditionalDeserializers(Deserializers) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
Convenience method for creating a new factory instance with additional deserializer
provider.
- withAdditionalDeserializers(Deserializers) - Method in class org.codehaus.jackson.map.DeserializerProvider
-
Method that is to configure
DeserializerFactory
that provider has
to use specified deserializer provider, with highest precedence (that is,
additional providers have higher precedence than default one or previously
added ones)
- withAdditionalKeyDeserializers(KeyDeserializers) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory.ConfigImpl
-
- withAdditionalKeyDeserializers(KeyDeserializers) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- withAdditionalKeyDeserializers(KeyDeserializers) - Method in class org.codehaus.jackson.map.DeserializerFactory.Config
-
Fluent/factory method used to construct a configuration object that
has same key deserializer providers as this instance, plus one specified
as argument.
- withAdditionalKeyDeserializers(KeyDeserializers) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
Convenience method for creating a new factory instance with additional
KeyDeserializers
.
- withAdditionalKeyDeserializers(KeyDeserializers) - Method in class org.codehaus.jackson.map.DeserializerProvider
-
- withAdditionalKeySerializers(Serializers) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory.ConfigImpl
-
- withAdditionalKeySerializers(Serializers) - Method in class org.codehaus.jackson.map.SerializerFactory.Config
-
- withAdditionalKeySerializers(Serializers) - Method in class org.codehaus.jackson.map.SerializerFactory
-
- withAdditionalSerializers(Serializers) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory.ConfigImpl
-
- withAdditionalSerializers(Serializers) - Method in class org.codehaus.jackson.map.SerializerFactory.Config
-
Method for creating a new instance with additional serializer provider.
- withAdditionalSerializers(Serializers) - Method in class org.codehaus.jackson.map.SerializerFactory
-
Convenience method for creating a new factory instance with additional serializer
provider; equivalent to calling
- withAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- withAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- withAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for constructing and returning a new instance with different
AnnotationIntrospector
to use (replacing old one).
- withAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withAnnotations(AnnotationMap) - Method in class org.codehaus.jackson.map.introspect.Annotated
-
Fluent factory method that will construct a new instance that uses specified
instance annotations instead of currently configured ones.
- withAnnotations(AnnotationMap) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- withAnnotations(AnnotationMap) - Method in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- withAnnotations(AnnotationMap) - Method in class org.codehaus.jackson.map.introspect.AnnotatedField
-
- withAnnotations(AnnotationMap) - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- withAnnotations(AnnotationMap) - Method in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
- withAppendedAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- withAppendedAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- withAppendedAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for constructing and returning a new instance with additional
AnnotationIntrospector
appended (as the lowest priority one)
- withAppendedAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withClassIntrospector(ClassIntrospector<? extends BeanDescription>) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- withClassIntrospector(ClassIntrospector<? extends BeanDescription>) - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- withClassIntrospector(ClassIntrospector<? extends BeanDescription>) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for constructing and returning a new instance with different
ClassIntrospector
to use.
- withClassIntrospector(ClassIntrospector<? extends BeanDescription>) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withConfig(DeserializerFactory.Config) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- withConfig(DeserializerFactory.Config) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Method used by module registration functionality, to construct a new bean
deserializer factory
with different configuration settings.
- withConfig(DeserializerFactory.Config) - Method in class org.codehaus.jackson.map.deser.CustomDeserializerFactory
-
Deprecated.
- withConfig(DeserializerFactory.Config) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
Method used for creating a new instance of this factory, but with different
configuration.
- withConfig(SerializerFactory.Config) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Method used by module registration functionality, to attach additional
serializer providers into this serializer factory.
- withConfig(SerializerFactory.Config) - Method in class org.codehaus.jackson.map.ser.CustomSerializerFactory
-
- withConfig(SerializerFactory.Config) - Method in class org.codehaus.jackson.map.SerializerFactory
-
Method used for creating a new instance of this factory, but with different
configuration.
- withContentTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.ArrayType
-
- withContentTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- withContentTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.CollectionType
-
- withContentTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- withContentTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.MapType
-
- withContentTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.SimpleType
-
- withContentTypeHandler(Object) - Method in class org.codehaus.jackson.type.JavaType
-
"Copy method" that will construct a new instance that is identical to
this instance, except that its content type will have specified
type handler assigned.
- withContentValueHandler(Object) - Method in class org.codehaus.jackson.map.type.ArrayType
-
- withContentValueHandler(Object) - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- withContentValueHandler(Object) - Method in class org.codehaus.jackson.map.type.CollectionType
-
- withContentValueHandler(Object) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- withContentValueHandler(Object) - Method in class org.codehaus.jackson.map.type.MapType
-
- withContentValueHandler(Object) - Method in class org.codehaus.jackson.map.type.SimpleType
-
- withContentValueHandler(Object) - Method in class org.codehaus.jackson.type.JavaType
-
- withCreatorVisibility(JsonAutoDetect.Visibility) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- withCreatorVisibility(JsonAutoDetect.Visibility) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Builder method that will return a checker instance that has
specified minimum visibility level for creator methods
(constructors, factory methods)
- withDateFormat(DateFormat) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- withDateFormat(DateFormat) - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- withDateFormat(DateFormat) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for constructing and returning a new instance with different
DateFormat
to use.
- withDateFormat(DateFormat) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Fluent factory method that will construct a new writer instance that will
use specified date format for serializing dates; or if null passed, one
that will serialize dates as numeric timestamps.
- withDateFormat(DateFormat) - Method in class org.codehaus.jackson.map.SerializationConfig
-
In addition to constructing instance with specified date format,
will enable or disable Feature.WRITE_DATES_AS_TIMESTAMPS
(enable if format set as null; disable if non-null)
- withDefaultPrettyPrinter() - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method that will construct a new instance that will use the default
pretty printer for serialization.
- withDeserializerModifier(BeanDeserializerModifier) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory.ConfigImpl
-
- withDeserializerModifier(BeanDeserializerModifier) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- withDeserializerModifier(BeanDeserializerModifier) - Method in class org.codehaus.jackson.map.DeserializerFactory.Config
-
Fluent/factory method used to construct a configuration object that
has same configuration as this instance plus one additional
deserialiazer modifier.
- withDeserializerModifier(BeanDeserializerModifier) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
- withDeserializerModifier(BeanDeserializerModifier) - Method in class org.codehaus.jackson.map.DeserializerProvider
-
- withFactory(DeserializerFactory) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- withFactory(DeserializerFactory) - Method in class org.codehaus.jackson.map.DeserializerProvider
-
Method that sub-classes need to override, to ensure that fluent-factory
methods will produce proper sub-type.
- withFallBackAnnotationsFrom(Annotated) - Method in class org.codehaus.jackson.map.introspect.Annotated
-
Fluent factory method that will construct a new instance that uses
annotations from specified
Annotated
as fallback annotations
- withFieldVisibility(JsonAutoDetect.Visibility) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- withFieldVisibility(JsonAutoDetect.Visibility) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Builder method that will return a checker instance that has
specified minimum visibility level for fields.
- withFilters(FilterProvider) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method that will construct a new instance that uses specified
provider for resolving filter instances by id.
- withFilters(FilterProvider) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withGetterVisibility(JsonAutoDetect.Visibility) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- withGetterVisibility(JsonAutoDetect.Visibility) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Builder method that will return a checker instance that has
specified minimum visibility level for regular ("getXxx") getters.
- withHandlerInstantiator(HandlerInstantiator) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- withHandlerInstantiator(HandlerInstantiator) - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- withHandlerInstantiator(HandlerInstantiator) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for constructing and returning a new instance with different
HandlerInstantiator
to use.
- withHandlerInstantiator(HandlerInstantiator) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withInjectableValues(InjectableValues) - Method in class org.codehaus.jackson.map.ObjectReader
-
Method for constructing a new instance with configuration that uses
passed
InjectableValues
to provide injectable values.
- withInsertedAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- withInsertedAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- withInsertedAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for constructing and returning a new instance with additional
AnnotationIntrospector
inserted (as the highest priority one)
- withInsertedAnnotationIntrospector(AnnotationIntrospector) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withIsGetterVisibility(JsonAutoDetect.Visibility) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- withIsGetterVisibility(JsonAutoDetect.Visibility) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Builder method that will return a checker instance that has
specified minimum visibility level for "is-getters" ("isXxx").
- withKeyTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- withKeyTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.MapType
-
- withKeyValueHandler(Object) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- withKeyValueHandler(Object) - Method in class org.codehaus.jackson.map.type.MapType
-
- withMaxInputLookahead(int) - Method in class org.codehaus.jackson.format.DataFormatDetector
-
Method that will return a detector instance that allows detectors to
read up to specified number of bytes when determining format match strength.
- withMethod(Method) - Method in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
Method that constructs a new instance with settings (annotations, parameter annotations)
of this instance, but with different physical
Method
.
- withMinimalMatch(MatchStrength) - Method in class org.codehaus.jackson.format.DataFormatDetector
-
Method that will return a detector instance that uses given
minimal match level; match that may be returned unless a stronger match
is found with other format detectors.
- withModifier(TypeModifier) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- withModule(Module) - Method in class org.codehaus.jackson.map.ObjectMapper
-
- withName(String) - Method in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
Method for constructing a renamed instance
- withNodeFactory(JsonNodeFactory) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
Fluent factory method that will construct a new instance with
specified
JsonNodeFactory
- withNodeFactory(JsonNodeFactory) - Method in class org.codehaus.jackson.map.ObjectReader
-
Method for constructing a new reader instance with configuration that uses
passed
JsonNodeFactory
for constructing
JsonNode
instances.
- withOptimalMatch(MatchStrength) - Method in class org.codehaus.jackson.format.DataFormatDetector
-
Method that will return a detector instance that uses given
optimal match level (match that is considered sufficient to return, without
trying to find stronger matches with other formats).
- without(DeserializationConfig.Feature...) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
Fluent factory method that will construct and return a new configuration
object instance with specified features disabled.
- without(SerializationConfig.Feature...) - Method in class org.codehaus.jackson.map.SerializationConfig
-
Fluent factory method that will construct and return a new configuration
object instance with specified features disabled.
- withPrettyPrinter(PrettyPrinter) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method that will construct a new instance that will use specified pretty
printer (or, if null, will not do any pretty-printing)
- withPropertyNamingStrategy(PropertyNamingStrategy) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- withPropertyNamingStrategy(PropertyNamingStrategy) - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- withPropertyNamingStrategy(PropertyNamingStrategy) - Method in class org.codehaus.jackson.map.MapperConfig
-
- withPropertyNamingStrategy(PropertyNamingStrategy) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withSchema(FormatSchema) - Method in class org.codehaus.jackson.map.ObjectReader
-
Method for constructing a new instance with configuration that
passes specified
FormatSchema
to
JsonParser
that
is constructed for parsing content.
- withSchema(FormatSchema) - Method in class org.codehaus.jackson.map.ObjectWriter
-
- withSerializationInclusion(JsonSerialize.Inclusion) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withSerializer(JsonSerializer<Object>) - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Method that will construct and return a new writer that has
same properties as this writer, but uses specified serializer
instead of currently configured one (if any).
- withSerializer(JsonSerializer<Object>) - Method in class org.codehaus.jackson.map.ser.impl.UnwrappingBeanPropertyWriter
-
- withSerializerModifier(BeanSerializerModifier) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory.ConfigImpl
-
- withSerializerModifier(BeanSerializerModifier) - Method in class org.codehaus.jackson.map.SerializerFactory.Config
-
Method for creating a new instance with additional bean serializer modifier.
- withSerializerModifier(BeanSerializerModifier) - Method in class org.codehaus.jackson.map.SerializerFactory
-
Convenience method for creating a new factory instance with additional bean
serializer modifier; equivalent to calling
- withSetterVisibility(JsonAutoDetect.Visibility) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- withSetterVisibility(JsonAutoDetect.Visibility) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Builder method that will return a checker instance that has
specified minimum visibility level for setters.
- withSubtypeResolver(SubtypeResolver) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- withSubtypeResolver(SubtypeResolver) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for constructing and returning a new instance with different
SubtypeResolver
to use.
- withSubtypeResolver(SubtypeResolver) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withType(JavaType) - Method in class org.codehaus.jackson.map.BeanProperty.Std
-
- withType(JavaType) - Method in class org.codehaus.jackson.map.ObjectReader
-
Method for constructing a new reader instance that is configured
to data bind into specified type.
- withType(Class<?>) - Method in class org.codehaus.jackson.map.ObjectReader
-
Method for constructing a new reader instance that is configured
to data bind into specified type.
- withType(Type) - Method in class org.codehaus.jackson.map.ObjectReader
-
Method for constructing a new reader instance that is configured
to data bind into specified type.
- withType(TypeReference<?>) - Method in class org.codehaus.jackson.map.ObjectReader
-
Method for constructing a new reader instance that is configured
to data bind into specified type.
- withType(JavaType) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method that will construct a new instance that uses specific type
as the root type for serialization, instead of runtime dynamic
type of the root object itself.
- withType(Class<?>) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method that will construct a new instance that uses specific type
as the root type for serialization, instead of runtime dynamic
type of the root object itself.
- withType(TypeReference<?>) - Method in class org.codehaus.jackson.map.ObjectWriter
-
- withTypeFactory(TypeFactory) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- withTypeFactory(TypeFactory) - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- withTypeFactory(TypeFactory) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for constructing and returning a new instance with different
TypeFactory
to use.
- withTypeFactory(TypeFactory) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.ArrayType
-
- withTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- withTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.CollectionType
-
- withTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- withTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.MapType
-
- withTypeHandler(Object) - Method in class org.codehaus.jackson.map.type.SimpleType
-
- withTypeHandler(Object) - Method in class org.codehaus.jackson.type.JavaType
-
"Copy method" that will construct a new instance that is identical to
this instance, except that it will have specified type handler assigned.
- withTypeResolverBuilder(TypeResolverBuilder<?>) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- withTypeResolverBuilder(TypeResolverBuilder<?>) - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- withTypeResolverBuilder(TypeResolverBuilder<?>) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for constructing and returning a new instance with different
TypeResolverBuilder
to use.
- withTypeResolverBuilder(TypeResolverBuilder<?>) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withValueDeserializer(JsonDeserializer<Object>) - Method in class org.codehaus.jackson.map.deser.impl.CreatorProperty
-
- withValueDeserializer(JsonDeserializer<Object>) - Method in class org.codehaus.jackson.map.deser.SettableAnyProperty
-
- withValueDeserializer(JsonDeserializer<Object>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.FieldProperty
-
- withValueDeserializer(JsonDeserializer<Object>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.InnerClassProperty
-
- withValueDeserializer(JsonDeserializer<Object>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.ManagedReferenceProperty
-
- withValueDeserializer(JsonDeserializer<Object>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.MethodProperty
-
- withValueDeserializer(JsonDeserializer<Object>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty.SetterlessProperty
-
- withValueDeserializer(JsonDeserializer<Object>) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- withValueHandler(Object) - Method in class org.codehaus.jackson.map.type.ArrayType
-
- withValueHandler(Object) - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- withValueHandler(Object) - Method in class org.codehaus.jackson.map.type.CollectionType
-
- withValueHandler(Object) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- withValueHandler(Object) - Method in class org.codehaus.jackson.map.type.MapType
-
- withValueHandler(Object) - Method in class org.codehaus.jackson.map.type.SimpleType
-
- withValueHandler(Object) - Method in class org.codehaus.jackson.type.JavaType
-
- withValueInstantiators(ValueInstantiators) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory.ConfigImpl
-
- withValueInstantiators(ValueInstantiators) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- withValueInstantiators(ValueInstantiators) - Method in class org.codehaus.jackson.map.DeserializerFactory.Config
-
Fluent/factory method used to construct a configuration object that
has same configuration as this instance plus specified additional
value instantiator provider object.
- withValueInstantiators(ValueInstantiators) - Method in class org.codehaus.jackson.map.DeserializerFactory
-
Convenience method for creating a new factory instance with additional
ValueInstantiators
.
- withValueInstantiators(ValueInstantiators) - Method in class org.codehaus.jackson.map.DeserializerProvider
-
Method that will construct a new instance with specified additional value instantiators
(i.e.
- withValueToUpdate(Object) - Method in class org.codehaus.jackson.map.ObjectReader
-
Method for constructing a new instance with configuration that
updates passed Object (as root value), instead of constructing
a new value.
- withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.ContainerSerializerBase
-
Factory(-like) method that can be used to construct a new container
serializer that uses specified
TypeSerializer
for decorating
contained values with additional type information.
- withView(Class<?>) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method that will construct a new instance that uses specified
serialization view for serialization (with null basically disables
view processing)
- withView(Class<?>) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withVisibility(JsonMethod, JsonAutoDetect.Visibility) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- withVisibility(JsonMethod, JsonAutoDetect.Visibility) - Method in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- withVisibility(JsonMethod, JsonAutoDetect.Visibility) - Method in interface org.codehaus.jackson.map.introspect.VisibilityChecker
-
Builder method that will create and return an instance that has specified
JsonAutoDetect.Visibility
value to use for specified property.
- withVisibility(JsonMethod, JsonAutoDetect.Visibility) - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- withVisibility(JsonMethod, JsonAutoDetect.Visibility) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for constructing and returning a new instance with different
minimal visibility level for specified property type
- withVisibility(JsonMethod, JsonAutoDetect.Visibility) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- withVisibilityChecker(VisibilityChecker<?>) - Method in class org.codehaus.jackson.map.DeserializationConfig
-
- withVisibilityChecker(VisibilityChecker<?>) - Method in class org.codehaus.jackson.map.MapperConfig.Base
-
- withVisibilityChecker(VisibilityChecker<?>) - Method in class org.codehaus.jackson.map.MapperConfig
-
Method for constructing and returning a new instance with different
VisibilityChecker
to use.
- withVisibilityChecker(VisibilityChecker<?>) - Method in class org.codehaus.jackson.map.SerializationConfig
-
- wrapAndThrow(Throwable, Object, String, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Method that will modify caught exception (passed in as argument)
as necessary to include reference information, and to ensure it
is a subtype of
IOException
, or an unchecked exception.
- wrapAndThrow(Throwable, Object, int, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
- wrapAndThrow(Throwable, Object, String) - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
- wrapAndThrow(Throwable, Object, int) - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
- wrapAndThrow(Throwable, Object) - Method in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
- wrapAndThrow(SerializerProvider, Throwable, Object, String) - Method in class org.codehaus.jackson.map.ser.std.SerializerBase
-
Method that will modify caught exception (passed in as argument)
as necessary to include reference information, and to ensure it
is a subtype of
IOException
, or an unchecked exception.
- wrapAndThrow(SerializerProvider, Throwable, Object, int) - Method in class org.codehaus.jackson.map.ser.std.SerializerBase
-
- wrapAndThrow(Throwable, Object, String) - Method in class org.codehaus.jackson.map.ser.std.SerializerBase
-
Deprecated.
Use version that takes SerializerProvider
instead.
- wrapAndThrow(Throwable, Object, int) - Method in class org.codehaus.jackson.map.ser.std.SerializerBase
-
Deprecated.
Use version that takes SerializerProvider
instead.
- wrapException(Throwable) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- wrapInstantiationProblem(Throwable, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
- wrapperType(Class<?>) - Static method in class org.codehaus.jackson.map.util.ClassUtil
-
Helper method for finding wrapper type for given primitive type (why isn't
there one in JDK?)
- wrapWithPath(Throwable, Object, String) - Static method in exception org.codehaus.jackson.map.JsonMappingException
-
Method that can be called to either create a new JsonMappingException
(if underlying exception is not a JsonMappingException), or augment
given exception with given path/reference information.
- wrapWithPath(Throwable, Object, int) - Static method in exception org.codehaus.jackson.map.JsonMappingException
-
Method that can be called to either create a new JsonMappingException
(if underlying exception is not a JsonMappingException), or augment
given exception with given path/reference information.
- wrapWithPath(Throwable, JsonMappingException.Reference) - Static method in exception org.codehaus.jackson.map.JsonMappingException
-
Method that can be called to either create a new JsonMappingException
(if underlying exception is not a JsonMappingException), or augment
given exception with given path/reference information.
- write(char[]) - Method in class org.codehaus.jackson.io.SegmentedStringWriter
-
- write(char[], int, int) - Method in class org.codehaus.jackson.io.SegmentedStringWriter
-
- write(int) - Method in class org.codehaus.jackson.io.SegmentedStringWriter
-
- write(String) - Method in class org.codehaus.jackson.io.SegmentedStringWriter
-
- write(String, int, int) - Method in class org.codehaus.jackson.io.SegmentedStringWriter
-
- write(char[]) - Method in class org.codehaus.jackson.io.UTF8Writer
-
- write(char[], int, int) - Method in class org.codehaus.jackson.io.UTF8Writer
-
- write(int) - Method in class org.codehaus.jackson.io.UTF8Writer
-
- write(String) - Method in class org.codehaus.jackson.io.UTF8Writer
-
- write(String, int, int) - Method in class org.codehaus.jackson.io.UTF8Writer
-
- write(byte[]) - Method in class org.codehaus.jackson.util.ByteArrayBuilder
-
- write(byte[], int, int) - Method in class org.codehaus.jackson.util.ByteArrayBuilder
-
- write(int) - Method in class org.codehaus.jackson.util.ByteArrayBuilder
-
- writeArrayFieldStart(String) - Method in class org.codehaus.jackson.JsonGenerator
-
Convenience method for outputting a field entry ("member")
(that will contain a JSON Array value), and the START_ARRAY marker.
- writeArrayValueSeparator(JsonGenerator) - Method in interface org.codehaus.jackson.PrettyPrinter
-
Method called after an array value has been completely
output, and before another value is to be output.
- writeArrayValueSeparator(JsonGenerator) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
Method called after an array value has been completely
output, and before another value is to be output.
- writeArrayValueSeparator(JsonGenerator) - Method in class org.codehaus.jackson.util.MinimalPrettyPrinter
-
Method called after an array value has been completely
output, and before another value is to be output.
- writeBinary(Base64Variant, byte[], int, int) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeBinary(Base64Variant, byte[], int, int) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeBinary(Base64Variant, byte[], int, int) - Method in class org.codehaus.jackson.JsonGenerator
-
Method that will output given chunk of binary data as base64
encoded, as a complete String value (surrounded by double quotes).
- writeBinary(byte[], int, int) - Method in class org.codehaus.jackson.JsonGenerator
-
- writeBinary(byte[]) - Method in class org.codehaus.jackson.JsonGenerator
-
- writeBinary(Base64Variant, byte[], int, int) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeBinary(Base64Variant, byte[], int, int) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeBinary(Base64Variant, byte[], int, int) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeBinaryField(String, byte[]) - Method in class org.codehaus.jackson.JsonGenerator
-
Convenience method for outputting a field entry ("member")
that contains specified data in base64-encoded form.
- writeBoolean(boolean) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeBoolean(boolean) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeBoolean(boolean) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for outputting literal Json boolean value (one of
Strings 'true' and 'false').
- writeBoolean(boolean) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeBoolean(boolean) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeBoolean(boolean) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeBooleanField(String, boolean) - Method in class org.codehaus.jackson.JsonGenerator
-
Convenience method for outputting a field entry ("member")
that has a boolean value.
- writeBytes(byte[], int, int) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
Method for directly inserting specified bytes in output at
current position.
- writeEndArray() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- writeEndArray() - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeEndArray() - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeEndArray() - Method in class org.codehaus.jackson.JsonGenerator
-
Method for writing closing marker of a JSON Array value
(character ']'; plus possible white space decoration
if pretty-printing is enabled).
- writeEndArray(JsonGenerator, int) - Method in interface org.codehaus.jackson.PrettyPrinter
-
Method called after an Array value has been completely output
(minus closing bracket).
- writeEndArray() - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeEndArray(JsonGenerator, int) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
- writeEndArray() - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeEndArray(JsonGenerator, int) - Method in class org.codehaus.jackson.util.MinimalPrettyPrinter
-
- writeEndArray() - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeEndObject() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- writeEndObject() - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeEndObject() - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeEndObject() - Method in class org.codehaus.jackson.JsonGenerator
-
Method for writing closing marker of a JSON Object value
(character '}'; plus possible white space decoration
if pretty-printing is enabled).
- writeEndObject(JsonGenerator, int) - Method in interface org.codehaus.jackson.PrettyPrinter
-
Method called after an Object value has been completely output
(minus closing curly bracket).
- writeEndObject() - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeEndObject(JsonGenerator, int) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
- writeEndObject() - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeEndObject(JsonGenerator, int) - Method in class org.codehaus.jackson.util.MinimalPrettyPrinter
-
- writeEndObject() - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeFieldName(String) - Method in class org.codehaus.jackson.impl.JsonWriteContext
-
Method that writer is to call before it writes a field name.
- writeFieldName(String) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeFieldName(SerializedString) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeFieldName(SerializableString) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeFieldName(String) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeFieldName(SerializedString) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeFieldName(SerializableString) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeFieldName(String) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for writing a field name (JSON String surrounded by
double quotes: syntactically identical to a JSON String value),
possibly decorated by white space if pretty-printing is enabled.
- writeFieldName(SerializedString) - Method in class org.codehaus.jackson.JsonGenerator
-
Method similar to
JsonGenerator.writeFieldName(String)
, main difference
being that it may perform better as some of processing (such as
quoting of certain characters, or encoding into external encoding
if supported by generator) can be done just once and reused for
later calls.
- writeFieldName(SerializableString) - Method in class org.codehaus.jackson.JsonGenerator
-
Method similar to
JsonGenerator.writeFieldName(String)
, main difference
being that it may perform better as some of processing (such as
quoting of certain characters, or encoding into external encoding
if supported by generator) can be done just once and reused for
later calls.
- writeFieldName(String) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeFieldName(SerializedString) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeFieldName(SerializableString) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeFieldName(String) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeFieldName(SerializedString) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeFieldName(SerializableString) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeFieldName(String) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeFieldName(SerializableString) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeFieldName(SerializedString) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeHeader() - Method in class org.codehaus.jackson.smile.SmileGenerator
-
Method that can be called to explicitly write Smile document header.
- writeIndentation(JsonGenerator, int) - Method in interface org.codehaus.jackson.impl.Indenter
-
- writeIndentation(JsonGenerator, int) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter.FixedSpaceIndenter
-
- writeIndentation(JsonGenerator, int) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter.Lf2SpacesIndenter
-
- writeIndentation(JsonGenerator, int) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter.NopIndenter
-
- writeNull() - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeNull() - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeNull() - Method in class org.codehaus.jackson.JsonGenerator
-
Method for outputting literal Json null value.
- writeNull() - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeNull() - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeNull() - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeNullField(String) - Method in class org.codehaus.jackson.JsonGenerator
-
Convenience method for outputting a field entry ("member")
that has JSON literal value null.
- writeNumber(int) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeNumber(long) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeNumber(BigInteger) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeNumber(double) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeNumber(float) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeNumber(BigDecimal) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeNumber(String) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeNumber(int) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeNumber(long) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeNumber(BigInteger) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeNumber(double) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeNumber(float) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeNumber(BigDecimal) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeNumber(String) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeNumber(int) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for outputting given value as Json number.
- writeNumber(long) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for outputting given value as Json number.
- writeNumber(BigInteger) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for outputting given value as Json number.
- writeNumber(double) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for outputting indicate Json numeric value.
- writeNumber(float) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for outputting indicate Json numeric value.
- writeNumber(BigDecimal) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for outputting indicate Json numeric value.
- writeNumber(String) - Method in class org.codehaus.jackson.JsonGenerator
-
Write method that can be used for custom numeric types that can
not be (easily?) converted to "standard" Java number types.
- writeNumber(int) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeNumber(long) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeNumber(BigInteger) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeNumber(double) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeNumber(float) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeNumber(BigDecimal) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeNumber(String) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeNumber(int) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeNumber(long) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeNumber(BigInteger) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeNumber(double) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeNumber(float) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeNumber(BigDecimal) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeNumber(String) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeNumber(int) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeNumber(long) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeNumber(double) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeNumber(float) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeNumber(BigDecimal) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeNumber(BigInteger) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeNumber(String) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeNumberField(String, int) - Method in class org.codehaus.jackson.JsonGenerator
-
Convenience method for outputting a field entry ("member")
that has the specified numeric value.
- writeNumberField(String, long) - Method in class org.codehaus.jackson.JsonGenerator
-
Convenience method for outputting a field entry ("member")
that has the specified numeric value.
- writeNumberField(String, double) - Method in class org.codehaus.jackson.JsonGenerator
-
Convenience method for outputting a field entry ("member")
that has the specified numeric value.
- writeNumberField(String, float) - Method in class org.codehaus.jackson.JsonGenerator
-
Convenience method for outputting a field entry ("member")
that has the specified numeric value.
- writeNumberField(String, BigDecimal) - Method in class org.codehaus.jackson.JsonGenerator
-
Convenience method for outputting a field entry ("member")
that has the specified numeric value.
- writeObject(Object) - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- writeObject(Object) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for writing given Java object (POJO) as Json.
- writeObject(Object) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeObject(Object) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeObjectEntrySeparator(JsonGenerator) - Method in interface org.codehaus.jackson.PrettyPrinter
-
Method called after an object entry (field:value) has been completely
output, and before another value is to be output.
- writeObjectEntrySeparator(JsonGenerator) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
Method called after an object entry (field:value) has been completely
output, and before another value is to be output.
- writeObjectEntrySeparator(JsonGenerator) - Method in class org.codehaus.jackson.util.MinimalPrettyPrinter
-
Method called after an object entry (field:value) has been completely
output, and before another value is to be output.
- writeObjectField(String, Object) - Method in class org.codehaus.jackson.JsonGenerator
-
Convenience method for outputting a field entry ("member")
that has contents of specific Java object as its value.
- writeObjectFieldStart(String) - Method in class org.codehaus.jackson.JsonGenerator
-
Convenience method for outputting a field entry ("member")
(that will contain a JSON Object value), and the START_OBJECT marker.
- writeObjectFieldValueSeparator(JsonGenerator) - Method in interface org.codehaus.jackson.PrettyPrinter
-
Method called after an object field has been output, but
before the value is output.
- writeObjectFieldValueSeparator(JsonGenerator) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
Method called after an object field has been output, but
before the value is output.
- writeObjectFieldValueSeparator(JsonGenerator) - Method in class org.codehaus.jackson.util.MinimalPrettyPrinter
-
Method called after an object field has been output, but
before the value is output.
- writer() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Convenience method for constructing
ObjectWriter
with default settings.
- writer(DateFormat) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Factory method for constructing
ObjectWriter
that will
serialize objects using specified
DateFormat
; or, if
null passed, using timestamp (64-bit number.
- writer(PrettyPrinter) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Factory method for constructing
ObjectWriter
that will
serialize objects using specified pretty printer for indentation
(or if null, no pretty printer)
- writer(FilterProvider) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Factory method for constructing
ObjectWriter
that will
serialize objects using specified filter provider.
- writer(FormatSchema) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Factory method for constructing
ObjectWriter
that will
pass specific schema object to
JsonGenerator
used for
writing content.
- writeRaw(String) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeRaw(String, int, int) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeRaw(char[], int, int) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeRaw(char) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeRaw(String) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeRaw(String, int, int) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeRaw(char[], int, int) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeRaw(char) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeRaw(String) - Method in class org.codehaus.jackson.JsonGenerator
-
Method that will force generator to copy
input text verbatim with no modifications (including
that no escaping is done and no separators are added even
if context [array, object] would otherwise require such).
- writeRaw(String, int, int) - Method in class org.codehaus.jackson.JsonGenerator
-
Method that will force generator to copy
input text verbatim with no modifications (including
that no escaping is done and no separators are added even
if context [array, object] would otherwise require such).
- writeRaw(char[], int, int) - Method in class org.codehaus.jackson.JsonGenerator
-
Method that will force generator to copy
input text verbatim with no modifications (including
that no escaping is done and no separators are added even
if context [array, object] would otherwise require such).
- writeRaw(char) - Method in class org.codehaus.jackson.JsonGenerator
-
Method that will force generator to copy
input text verbatim with no modifications (including
that no escaping is done and no separators are added even
if context [array, object] would otherwise require such).
- writeRaw(byte) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
Method for directly inserting specified byte in output at
current position.
- writeRaw(String) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeRaw(String, int, int) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeRaw(char[], int, int) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeRaw(char) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeRaw(String) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeRaw(String, int, int) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeRaw(char[], int, int) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeRaw(char) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeRaw(String) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeRaw(String, int, int) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeRaw(char[], int, int) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeRaw(char) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeRawUTF8String(byte[], int, int) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeRawUTF8String(byte[], int, int) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeRawUTF8String(byte[], int, int) - Method in class org.codehaus.jackson.JsonGenerator
-
Method similar to
JsonGenerator.writeString(String)
but that takes as
its input a UTF-8 encoded String that is to be output as-is, without additional
escaping (type of which depends on data format; backslashes for JSON).
- writeRawUTF8String(byte[], int, int) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeRawUTF8String(byte[], int, int) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeRawUTF8String(byte[], int, int) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeRawValue(String) - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- writeRawValue(String, int, int) - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- writeRawValue(char[], int, int) - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- writeRawValue(String) - Method in class org.codehaus.jackson.JsonGenerator
-
Method that will force generator to copy
input text verbatim without any modifications, but assuming
it must constitute a single legal JSON value (number, string,
boolean, null, Array or List).
- writeRawValue(String, int, int) - Method in class org.codehaus.jackson.JsonGenerator
-
- writeRawValue(char[], int, int) - Method in class org.codehaus.jackson.JsonGenerator
-
- writeRawValue(String) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeRawValue(String, int, int) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeRawValue(char[], int, int) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeRawValue(String) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeRawValue(String, int, int) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeRawValue(char[], int, int) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeRawValue(String) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeRawValue(String, int, int) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeRawValue(char[], int, int) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- WriterBasedGenerator - Class in org.codehaus.jackson.impl
-
- WriterBasedGenerator(IOContext, int, ObjectCodec, Writer) - Constructor for class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeRootValueSeparator(JsonGenerator) - Method in interface org.codehaus.jackson.PrettyPrinter
-
Method called after a root-level value has been completely
output, and before another value is to be output.
- writeRootValueSeparator(JsonGenerator) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
- writeRootValueSeparator(JsonGenerator) - Method in class org.codehaus.jackson.util.MinimalPrettyPrinter
-
- writerWithDefaultPrettyPrinter() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Factory method for constructing
ObjectWriter
that will
serialize objects using the default pretty printer for indentation
- writerWithType(Class<?>) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Factory method for constructing
ObjectWriter
that will
serialize objects using specified root type, instead of actual
runtime type of value.
- writerWithType(JavaType) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Factory method for constructing
ObjectWriter
that will
serialize objects using specified root type, instead of actual
runtime type of value.
- writerWithType(TypeReference<?>) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Factory method for constructing
ObjectWriter
that will
serialize objects using specified root type, instead of actual
runtime type of value.
- writerWithView(Class<?>) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Factory method for constructing
ObjectWriter
that will
serialize objects using specified JSON View (filter).
- writeStartArray() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- writeStartArray() - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeStartArray() - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeStartArray() - Method in class org.codehaus.jackson.JsonGenerator
-
Method for writing starting marker of a JSON Array value
(character '['; plus possible white space decoration
if pretty-printing is enabled).
- writeStartArray(JsonGenerator) - Method in interface org.codehaus.jackson.PrettyPrinter
-
Method called when an Array value is to be output, before
any member/child values are output.
- writeStartArray() - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeStartArray(JsonGenerator) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
- writeStartArray() - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeStartArray(JsonGenerator) - Method in class org.codehaus.jackson.util.MinimalPrettyPrinter
-
- writeStartArray() - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeStartObject() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- writeStartObject() - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeStartObject() - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeStartObject() - Method in class org.codehaus.jackson.JsonGenerator
-
Method for writing starting marker of a JSON Object value
(character '{'; plus possible white space decoration
if pretty-printing is enabled).
- writeStartObject(JsonGenerator) - Method in interface org.codehaus.jackson.PrettyPrinter
-
Method called when an Object value is to be output, before
any fields are output.
- writeStartObject() - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeStartObject(JsonGenerator) - Method in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
- writeStartObject() - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeStartObject(JsonGenerator) - Method in class org.codehaus.jackson.util.MinimalPrettyPrinter
-
- writeStartObject() - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeString(String) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeString(char[], int, int) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeString(SerializableString) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeString(String) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeString(char[], int, int) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeString(SerializableString) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeString(String) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for outputting a String value.
- writeString(char[], int, int) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for outputting a String value.
- writeString(SerializableString) - Method in class org.codehaus.jackson.JsonGenerator
-
- writeString(String) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeString(char[], int, int) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeString(SerializableString) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeString(String) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeString(char[], int, int) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeString(SerializableString) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeString(String) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeString(char[], int, int) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeString(SerializableString) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeStringField(String, String) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeStringField(String, String) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeStringField(String, String) - Method in class org.codehaus.jackson.JsonGenerator
-
Convenience method for outputting a field entry ("member")
that has a String value.
- writeStringField(String, String) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeTo(Object, Class<?>, Type, Annotation[], MediaType, MultivaluedMap<String, Object>, OutputStream) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
Method that JAX-RS container calls to serialize given value.
- writeTree(JsonNode) - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- writeTree(JsonNode) - Method in class org.codehaus.jackson.JsonGenerator
-
Method for writing given JSON tree (expressed as a tree
where given JsonNode is the root) using this generator.
- writeTree(JsonGenerator, JsonNode) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method to serialize given JSON Tree, using generator
provided.
- writeTree(JsonGenerator, JsonNode, SerializationConfig) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method to serialize given Json Tree, using generator
provided.
- writeTree(JsonGenerator, JsonNode) - Method in class org.codehaus.jackson.map.ObjectReader
-
- writeTree(JsonGenerator, JsonNode) - Method in class org.codehaus.jackson.ObjectCodec
-
Method to serialize given Json Tree, using generator
provided.
- writeTree(JsonNode) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeTree(JsonNode) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeTypePrefixForArray(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
-
- writeTypePrefixForArray(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
-
- writeTypePrefixForArray(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- writeTypePrefixForArray(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- writeTypePrefixForArray(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsWrapperTypeSerializer
-
- writeTypePrefixForArray(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.AsWrapperTypeSerializer
-
- writeTypePrefixForArray(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.TypeSerializer
-
Method called to write initial part of type information for given
value, when it will be output as JSON Array value (not as JSON
Object or scalar).
- writeTypePrefixForArray(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.TypeSerializer
-
Alternative version of the prefix-for-array method, which is given
actual type to use (instead of using exact type of the value); typically
a super type of actual value type
- writeTypePrefixForObject(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
-
- writeTypePrefixForObject(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
-
- writeTypePrefixForObject(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- writeTypePrefixForObject(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- writeTypePrefixForObject(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeSerializer
-
- writeTypePrefixForObject(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeSerializer
-
- writeTypePrefixForObject(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsWrapperTypeSerializer
-
- writeTypePrefixForObject(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.AsWrapperTypeSerializer
-
- writeTypePrefixForObject(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.TypeSerializer
-
Method called to write initial part of type information for given
value, when it will be output as JSON Object value (not as JSON
Array or scalar).
- writeTypePrefixForObject(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.TypeSerializer
-
Alternative version of the prefix-for-object method, which is given
actual type to use (instead of using exact type of the value); typically
a super type of actual value type
- writeTypePrefixForScalar(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
-
- writeTypePrefixForScalar(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
-
- writeTypePrefixForScalar(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- writeTypePrefixForScalar(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- writeTypePrefixForScalar(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsWrapperTypeSerializer
-
- writeTypePrefixForScalar(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.AsWrapperTypeSerializer
-
- writeTypePrefixForScalar(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.TypeSerializer
-
Method called to write initial part of type information for given
value, when it will be output as scalar JSON value (not as JSON
Object or Array).
- writeTypePrefixForScalar(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.TypeSerializer
-
Alternative version of the prefix-for-scalar method, which is given
actual type to use (instead of using exact type of the value); typically
a super type of actual value type
- writeTypeSuffixForArray(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
-
- writeTypeSuffixForArray(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- writeTypeSuffixForArray(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsWrapperTypeSerializer
-
- writeTypeSuffixForArray(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.TypeSerializer
-
- writeTypeSuffixForObject(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
-
- writeTypeSuffixForObject(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- writeTypeSuffixForObject(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeSerializer
-
- writeTypeSuffixForObject(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsWrapperTypeSerializer
-
- writeTypeSuffixForObject(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.TypeSerializer
-
- writeTypeSuffixForScalar(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeSerializer
-
- writeTypeSuffixForScalar(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- writeTypeSuffixForScalar(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsWrapperTypeSerializer
-
- writeTypeSuffixForScalar(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.TypeSerializer
-
- writeUTF8String(byte[], int, int) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- writeUTF8String(byte[], int, int) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- writeUTF8String(byte[], int, int) - Method in class org.codehaus.jackson.JsonGenerator
-
Method similar to
JsonGenerator.writeString(String)
but that takes as its input
a UTF-8 encoded String which has
not been escaped using whatever
escaping scheme data format requires (for JSON that is backslash-escaping
for control characters and double-quotes; for other formats something else).
- writeUTF8String(byte[], int, int) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- writeUTF8String(byte[], int, int) - Method in class org.codehaus.jackson.util.JsonGeneratorDelegate
-
- writeUTF8String(byte[], int, int) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- writeValue() - Method in class org.codehaus.jackson.impl.JsonWriteContext
-
- writeValue(JsonGenerator, Object) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that can be used to serialize any Java value as
JSON output, using provided
JsonGenerator
.
- writeValue(JsonGenerator, Object, SerializationConfig) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that can be used to serialize any Java value as
JSON output, using provided
JsonGenerator
,
configured as per passed configuration object.
- writeValue(File, Object) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that can be used to serialize any Java value as
JSON output, written to File provided.
- writeValue(OutputStream, Object) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that can be used to serialize any Java value as
JSON output, using output stream provided (using encoding
JsonEncoding.UTF8
).
- writeValue(Writer, Object) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that can be used to serialize any Java value as
JSON output, using Writer provided.
- writeValue(JsonGenerator, Object) - Method in class org.codehaus.jackson.map.ObjectReader
-
- writeValue(JsonGenerator, Object) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method that can be used to serialize any Java value as
JSON output, using provided
JsonGenerator
.
- writeValue(File, Object) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method that can be used to serialize any Java value as
JSON output, written to File provided.
- writeValue(OutputStream, Object) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method that can be used to serialize any Java value as
JSON output, using output stream provided (using encoding
JsonEncoding.UTF8
).
- writeValue(Writer, Object) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method that can be used to serialize any Java value as
JSON output, using Writer provided.
- writeValue(JsonGenerator, Object) - Method in class org.codehaus.jackson.ObjectCodec
-
Method to serialize given Java Object, using generator
provided.
- writeValueAsBytes(Object) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that can be used to serialize any Java value as
a byte array.
- writeValueAsBytes(Object) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method that can be used to serialize any Java value as
a byte array.
- writeValueAsString(Object) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method that can be used to serialize any Java value as
a String.
- writeValueAsString(Object) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method that can be used to serialize any Java value as
a String.
- wrongTokenException(JsonParser, JsonToken, String) - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- wrongTokenException(JsonParser, JsonToken, String) - Method in class org.codehaus.jackson.map.DeserializationContext
-
Helper method for indicating that the current token was expected to be another
token.
- _abstractTypeResolvers - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerFactory.ConfigImpl
-
List of objects that may be able to resolve abstract types to
concrete types.
- _abstractTypes - Variable in class org.codehaus.jackson.map.module.SimpleModule
-
Lazily-constructed resolver used for storing mappings from
abstract classes to more specific implementing classes
(which may be abstract or concrete)
- _acceptBoolean - Variable in class org.codehaus.jackson.map.deser.AbstractDeserializer
-
- _acceptDouble - Variable in class org.codehaus.jackson.map.deser.AbstractDeserializer
-
- _acceptInt - Variable in class org.codehaus.jackson.map.deser.AbstractDeserializer
-
- _acceptString - Variable in class org.codehaus.jackson.map.deser.AbstractDeserializer
-
- _accessorMethod - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Accessor method used to get property value, for
method-accessible properties.
- _accessorMethod - Variable in class org.codehaus.jackson.map.ser.std.JsonValueSerializer
-
- _actualType - Variable in class org.codehaus.jackson.map.type.HierarchicType
-
- _add(Annotation) - Method in class org.codehaus.jackson.map.introspect.AnnotationMap
-
- _addClassMixIns(AnnotationMap, Class<?>) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Helper method for adding any mix-in annotations specified
class might have.
- _addClassMixIns(AnnotationMap, Class<?>, Class<?>) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _addConstructorMixIns(Class<?>) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _addCreators() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Method for collecting basic information on constructor(s) found
- _addDeserializerConstructors(DeserializationConfig, BasicBeanDescription, VisibilityChecker<?>, AnnotationIntrospector, CreatorCollector) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- _addDeserializerFactoryMethods(DeserializationConfig, BasicBeanDescription, VisibilityChecker<?>, AnnotationIntrospector, CreatorCollector) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- _addFactoryMixIns(Class<?>) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _addFieldMixIns(Class<?>, Class<?>, Map<String, AnnotatedField>) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Method called to add field mix-ins from given mix-in class (and its fields)
into already collected actual fields (from introspected classes and their
super-classes)
- _addFields(Map<String, AnnotatedField>, Class<?>) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _addFields() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Method for collecting basic information on all fields found
- _addInjectables() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- _additionalDeserializers - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerFactory.ConfigImpl
-
List of providers for additional deserializers, checked before considering default
basic or bean deserializers.
- _additionalKeyDeserializers - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerFactory.ConfigImpl
-
List of providers for additional key deserializers, checked before considering
standard key deserializers.
- _additionalKeySerializers - Variable in class org.codehaus.jackson.map.ser.BeanSerializerFactory.ConfigImpl
-
- _additionalSerializers - Variable in class org.codehaus.jackson.map.ser.BeanSerializerFactory.ConfigImpl
-
List of providers for additional serializers, checked before considering default
basic or bean serialializers.
- _addMemberMethods(Class<?>, MethodFilter, AnnotatedMethodMap, Class<?>, AnnotatedMethodMap) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _addMethodMixIns(Class<?>, MethodFilter, AnnotatedMethodMap, Class<?>, AnnotatedMethodMap) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _addMethods() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Method for collecting basic information on all fields found
- _addMixOvers(Constructor<?>, AnnotatedConstructor, boolean) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _addMixOvers(Method, AnnotatedMethod, boolean) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _addMixUnders(Method, AnnotatedMethod) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Method that will add annotations from specified source method to target method,
but only if target does not yet have them.
- _addPlaceholder(String) - Method in class org.codehaus.jackson.map.type.TypeBindings
-
- _annotated - Variable in class org.codehaus.jackson.map.deser.impl.CreatorProperty
-
Placeholder that represents constructor parameter, when it is created
from actual constructor.
- _annotated - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty.FieldProperty
-
- _annotated - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty.MethodProperty
-
- _annotated - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty.SetterlessProperty
-
- _annotationIntrospector - Variable in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Filter used to determine which annotations to gather; used
to optimize things so that unnecessary annotations are
ignored.
- _annotationIntrospector - Variable in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- _annotationIntrospector - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- _annotationIntrospector - Variable in class org.codehaus.jackson.map.MapperConfig.Base
-
Introspector used for accessing annotation value based configuration.
- _annotationIntrospector - Variable in class org.codehaus.jackson.map.ser.PropertyBuilder
-
- _annotations - Variable in class org.codehaus.jackson.map.introspect.AnnotatedMember
-
- _annotations - Variable in class org.codehaus.jackson.map.introspect.AnnotationMap
-
- _anyGetter - Variable in class org.codehaus.jackson.map.ser.AnyGetterWriter
-
- _anyGetter - Variable in class org.codehaus.jackson.map.ser.BeanSerializerBuilder
-
Writer used for "any getter" properties, if any.
- _anyGetterMethod - Variable in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- _anyGetters - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- _anyGetterWriter - Variable in class org.codehaus.jackson.map.ser.std.BeanSerializerBase
-
- _anySetter - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Fallback setter used for handling any properties that are not
mapped to regular setters.
- _anySetter - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerBuilder
-
Fallback setter used for handling any properties that are not
mapped to regular setters.
- _anySetterMethod - Variable in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- _anySetters - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- _append(JsonToken) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- _append(JsonToken, Object) - Method in class org.codehaus.jackson.util.TokenBuffer
-
- _appendOffset - Variable in class org.codehaus.jackson.util.TokenBuffer
-
Offset within last segment,
- _appendPathDesc(StringBuilder) - Method in exception org.codehaus.jackson.map.JsonMappingException
-
- _appliesFor - Variable in class org.codehaus.jackson.map.ObjectMapper.DefaultTypeResolverBuilder
-
Definition of what types is this default typer valid for.
- _arrayBuilders - Variable in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- _arrayDeserializers - Static variable in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
And finally, we have special array deserializers for primitive
array types
- _arrayIndenter - Variable in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
By default, let's use only spaces to separate array values.
- _arrayListSuperInterfaceChain(HierarchicType) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- _arraySerializers - Static variable in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
- _arrayType - Variable in class org.codehaus.jackson.map.deser.std.ObjectArrayDeserializer
-
- _assertSubclass(Class<?>, Class<?>) - Method in class org.codehaus.jackson.type.JavaType
-
- _backProperty - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty.ManagedReferenceProperty
-
- _backRefProperties - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerBuilder
-
Back-reference properties this bean contains (if any)
- _backRefs - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
We may also have one or more back reference fields (usually
zero or one).
- _base - Variable in class org.codehaus.jackson.map.MapperConfig
-
Immutable container object for simple configuration settings.
- _basePackageName - Variable in class org.codehaus.jackson.map.jsontype.impl.MinimalClassNameIdResolver
-
Package name of the base class, to be used for determining common
prefix that can be omitted from included type id.
- _basePackagePrefix - Variable in class org.codehaus.jackson.map.jsontype.impl.MinimalClassNameIdResolver
-
- _baseType - Variable in class org.codehaus.jackson.map.deser.AbstractDeserializer
-
- _baseType - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
-
- _baseType - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeIdResolverBase
-
Common base type for all polymorphic instances handled.
- _beanDesc - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerBuilder
-
- _beanDesc - Variable in class org.codehaus.jackson.map.ser.BeanSerializerBuilder
-
- _beanDesc - Variable in class org.codehaus.jackson.map.ser.PropertyBuilder
-
- _beanProperties - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Mapping of property names to properties, built when all properties
to use have been successfully resolved.
- _beanProperties - Variable in class org.codehaus.jackson.mrbean.BeanBuilder
-
- _beanType - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Declared type of the bean this deserializer handles.
- _bigEndian - Variable in class org.codehaus.jackson.impl.ByteSourceBootstrapper
-
- _bigEndian - Variable in class org.codehaus.jackson.io.UTF32Reader
-
- _bigEndian - Variable in enum org.codehaus.jackson.JsonEncoding
-
- _binaryValue - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
- _bind(JsonParser) - Method in class org.codehaus.jackson.map.ObjectReader
-
Actual implementation of value reading+binding operation.
- _bindAndClose(JsonParser) - Method in class org.codehaus.jackson.map.ObjectReader
-
- _bindAndCloseAsTree(JsonParser) - Method in class org.codehaus.jackson.map.ObjectReader
-
- _bindAsTree(JsonParser) - Method in class org.codehaus.jackson.map.ObjectReader
-
- _bindings - Variable in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
We may need type bindings for the bean type.
- _bindings - Variable in class org.codehaus.jackson.map.type.TypeBindings
-
Lazily-instantiated bindings of resolved type parameters
- _booleanCreator - Variable in class org.codehaus.jackson.map.deser.impl.CreatorCollector
-
- _buckets - Variable in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Overflow buckets; if primary doesn't match, lookup is done
from here.
- _buffer - Variable in class org.codehaus.jackson.format.InputAccessor.Std
-
- _buffer - Variable in class org.codehaus.jackson.io.SegmentedStringWriter
-
- _bufferedAmount - Variable in class org.codehaus.jackson.format.InputAccessor.Std
-
- _bufferedData - Variable in class org.codehaus.jackson.format.DataFormatMatcher
-
Content read during format matching process
- _bufferedLength - Variable in class org.codehaus.jackson.format.DataFormatMatcher
-
- _bufferRecyclable - Variable in class org.codehaus.jackson.impl.StreamBasedParserBase
-
Deprecated.
Flag that indicates whether the input buffer is recycable (and
needs to be returned to recycler once we are done) or not.
- _bufferRecyclable - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
Flag that indicates whether the output buffer is recycable (and
needs to be returned to recycler once we are done) or not.
- _bufferRecyclable - Variable in class org.codehaus.jackson.impl.Utf8StreamParser
-
Flag that indicates whether the input buffer is recycable (and
needs to be returned to recycler once we are done) or not.
- _bufferRecyclable - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
Flag that indicates whether the output buffer is recycable (and
needs to be returned to recycler once we are done) or not.
- _bufferRecyclable - Variable in class org.codehaus.jackson.smile.SmileParser
-
Flag that indicates whether the input buffer is recycable (and
needs to be returned to recycler once we are done) or not.
- _bufferRecycler - Variable in class org.codehaus.jackson.io.IOContext
-
Recycler used for actual allocation/deallocation/reuse
- _byteArrayBuilder - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
ByteArrayBuilder is needed if 'getBinaryValue' is called.
- _byteBuffers - Variable in class org.codehaus.jackson.util.BufferRecycler
-
- _byteBuilder - Variable in class org.codehaus.jackson.io.JsonStringEncoder
-
Lazily-constructed builder used for UTF-8 encoding of text values
(quoted and unquoted)
- _byteBuilder - Variable in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- _byteCount - Variable in class org.codehaus.jackson.io.UTF32Reader
-
Total read byte count; used for error reporting purposes
- _bytesPerChar - Variable in class org.codehaus.jackson.impl.ByteSourceBootstrapper
-
- _bytesWritten - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
Let's keep track of how many bytes have been output, may prove useful
when debugging.
- _cachedArrayListType - Variable in class org.codehaus.jackson.map.type.TypeFactory
-
Lazily constructed copy of type hierarchy from
ArrayList
to its supertypes.
- _cachedDeserializers - Variable in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
We will also cache some dynamically constructed deserializers;
specifically, ones that are expensive to construct.
- _cachedHashMapType - Variable in class org.codehaus.jackson.map.type.TypeFactory
-
Lazily constructed copy of type hierarchy from
HashMap
to its supertypes.
- _cacheKey - Variable in class org.codehaus.jackson.map.ser.impl.ReadOnlyClassToSerializerMap
-
We'll reuse key class to avoid unnecessary instantiations; since
this is not shared between threads, we can just reuse single
instance.
- _calcName(Class<?>) - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- _calendarClass - Variable in class org.codehaus.jackson.map.deser.std.CalendarDeserializer
-
We may know actual expected type; if so, it will be
used for instantiation.
- _canonicalize - Variable in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Whether any canonicalization should be attempted (whether using
intern or not)
- _cantHappen() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _cfgCheckCanDeserialize - Variable in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
Whether we want to actually check that Jackson has
a deserializer for given type.
- _cfgCheckCanSerialize - Variable in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
Whether we want to actually check that Jackson has
a serializer for given type.
- _cfgCustomUntouchables - Variable in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
Set of types (classes) that provider should ignore for data binding
- _cfgDelegateToTextual - Variable in class org.codehaus.jackson.smile.SmileFactory
-
Whether non-supported methods (ones trying to output using
char-based targets like
Writer
, for example)
should be delegated to regular Jackson JSON processing
(if set to true); or throw
UnsupportedOperationException
(if set to false)
- _cfgEmptyStringsAsObjects - Variable in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
Are we allowed to convert empty Strings to null objects?
- _cfgFailOnUnknownId - Variable in class org.codehaus.jackson.map.ser.impl.SimpleFilterProvider
-
Flag that indicates whether request for an unknown filter id should
result an exception (default) or not.
- _cfgNumbersAsStrings - Variable in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _cfgPrettyPrinter - Variable in class org.codehaus.jackson.JsonGenerator
-
Object that handles pretty-printing (usually additional
white space to make results more human-readable) during
output.
- _cfgSerializationType - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Type to use for locating serializer; normally same as return
type of the accessor method, but may be overridden by annotations.
- _characterEscapes - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
Definition of custom character escapes to use for generators created
by this factory, if any.
- _characterEscapes - Variable in class org.codehaus.jackson.impl.WriterBasedGenerator
-
Definition of custom character escapes to use for generators created
by this factory, if any.
- _characterEscapes - Variable in class org.codehaus.jackson.JsonFactory
-
Definition of custom character escapes to use for generators created
by this factory, if any.
- _charBuffer - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
Intermediate buffer in which characters of a String are copied
before being encoded.
- _charBuffer - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
Intermediate buffer in which characters of a String are copied
before being encoded.
- _charBufferLength - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
Length of _charBuffer
- _charBufferLength - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
- _charBuffers - Variable in class org.codehaus.jackson.util.BufferRecycler
-
- _charCount - Variable in class org.codehaus.jackson.io.UTF32Reader
-
Total read character count; used for error reporting purposes
- _checkIsNumber() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- _child - Variable in class org.codehaus.jackson.impl.JsonReadContext
-
- _child - Variable in class org.codehaus.jackson.impl.JsonWriteContext
-
- _children - Variable in class org.codehaus.jackson.node.ArrayNode
-
- _children - Variable in class org.codehaus.jackson.node.ObjectNode
-
- _class - Variable in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Class for which annotations apply, and that owns other
components (constructors, methods)
- _class - Variable in class org.codehaus.jackson.map.jsontype.NamedType
-
- _class - Variable in class org.codehaus.jackson.map.ser.impl.SerializerCache.TypeKey
-
- _class - Variable in class org.codehaus.jackson.type.JavaType
-
This is the nominal type-erased Class that would be close to the
type represented (but not exactly type, due to type erasure: type
instance may have more information on this).
- _classAnnotations - Variable in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Combined list of Jackson annotations that the class has,
including inheritable ones from super classes and interfaces
- _classDef - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Low-level introspected class information (methods, fields etc)
- _classInfo - Variable in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Information collected about the class introspected.
- _classIntrospector - Variable in class org.codehaus.jackson.map.MapperConfig.Base
-
Introspector used to figure out Bean properties needed for bean serialization
and deserialization.
- _classLoader - Variable in class org.codehaus.jackson.mrbean.AbstractTypeMaterializer
-
We will use per-materializer class loader for now; would be nice
to find a way to reduce number of class loaders (and hence
number of generated classes!) constructed...
- _classMappings - Variable in class org.codehaus.jackson.map.module.SimpleDeserializers
-
- _classMappings - Variable in class org.codehaus.jackson.map.module.SimpleKeyDeserializers
-
- _classMappings - Variable in class org.codehaus.jackson.map.module.SimpleSerializers
-
Class-based mappings that are used both for exact and
sub-class matches.
- _classMappings - Variable in class org.codehaus.jackson.map.module.SimpleValueInstantiators
-
Mappings from raw (type-erased, i.e.
- _classSignature(Class<?>, StringBuilder, boolean) - Static method in class org.codehaus.jackson.map.type.TypeBase
-
- _closed - Variable in class org.codehaus.jackson.impl.JsonGeneratorBase
-
Flag that indicates whether generator is closed or not.
- _closed - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Flag that indicates whether parser is closed or not.
- _closed - Variable in class org.codehaus.jackson.node.TreeTraversingParser
-
Flag that indicates whether parser is closed or not.
- _closed - Variable in class org.codehaus.jackson.util.TokenBuffer
-
- _closed - Variable in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- _closeInput() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- _closeInput() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- _closeInput() - Method in class org.codehaus.jackson.impl.ReaderBasedParserBase
-
Deprecated.
- _closeInput() - Method in class org.codehaus.jackson.impl.StreamBasedParserBase
-
Deprecated.
- _closeInput() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _closeInput() - Method in class org.codehaus.jackson.smile.SmileParser
-
- _closeParser - Variable in class org.codehaus.jackson.map.MappingIterator
-
Flag that indicates whether input
JsonParser
should be closed
when we are done or not; generally only called when caller did not
pass JsonParser.
- _codec - Variable in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- _collCount - Variable in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Total number of Names in collision buckets (included in
_count
along with primary entries)
- _collectAndResolve(AnnotatedClass, NamedType, MapperConfig<?>, AnnotationIntrospector, HashMap<NamedType, NamedType>) - Method in class org.codehaus.jackson.map.jsontype.impl.StdSubtypeResolver
-
Method called to find subtypes for a specific type (class)
- _collectionType - Variable in class org.codehaus.jackson.map.deser.std.CollectionDeserializer
-
- _collectionType - Variable in class org.codehaus.jackson.map.deser.std.StringCollectionDeserializer
-
- _collectRelevantAnnotations(Annotation[][]) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _collectRelevantAnnotations(Annotation[]) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _collEnd - Variable in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Index of the first unused collision bucket entry (== size of
the used portion of collision list): less than
or equal to 0xFF (255), since max number of entries is 255
(8-bit, minus 0 used as 'empty' marker)
- _collList - Variable in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Array of heads of collision bucket chains; size dynamically
- _columnNr - Variable in class org.codehaus.jackson.impl.JsonReadContext
-
- _componentType - Variable in class org.codehaus.jackson.map.type.ArrayType
-
Type of elements in the array.
- _concatCBuffer - Variable in class org.codehaus.jackson.io.IOContext
-
Reference to the buffer allocated for buffering it for
output, before being encoded: generally this means concatenating
output, then encoding when buffer fills up.
- _concrete - Static variable in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
Since these are all JDK classes, we shouldn't have to worry
about ClassLoader used to load them.
- _concreteLazy - Static variable in class org.codehaus.jackson.map.ser.BasicSerializerFactory
-
Actually it may not make much sense to eagerly instantiate all
kinds of serializers: so this Map actually contains class references,
not instances
- _config - Variable in class org.codehaus.jackson.map.DeserializationContext
-
- _config - Variable in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- _config - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Configuration settings
- _config - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeNameIdResolver
-
- _config - Variable in class org.codehaus.jackson.map.ObjectReader
-
General serialization configuration settings; while immutable,
can use copy-constructor to create modified instances as necessary.
- _config - Variable in class org.codehaus.jackson.map.ObjectWriter
-
General serialization configuration settings
- _config - Variable in class org.codehaus.jackson.map.ser.PropertyBuilder
-
- _config - Variable in class org.codehaus.jackson.map.SerializerProvider
-
Serialization configuration to use for serialization processing.
- _configAndWriteValue(JsonGenerator, Object) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method called to configure the generator as necessary and then
call write functionality
- _configAndWriteValue(JsonGenerator, Object, Class<?>) - Method in class org.codehaus.jackson.map.ObjectMapper
-
- _configAndWriteValue(JsonGenerator, Object) - Method in class org.codehaus.jackson.map.ObjectWriter
-
Method called to configure the generator as necessary and then
call write functionality
- _constructArray(int) - Method in class org.codehaus.jackson.map.util.ArrayBuilders.BooleanBuilder
-
- _constructArray(int) - Method in class org.codehaus.jackson.map.util.ArrayBuilders.ByteBuilder
-
- _constructArray(int) - Method in class org.codehaus.jackson.map.util.ArrayBuilders.DoubleBuilder
-
- _constructArray(int) - Method in class org.codehaus.jackson.map.util.ArrayBuilders.FloatBuilder
-
- _constructArray(int) - Method in class org.codehaus.jackson.map.util.ArrayBuilders.IntBuilder
-
- _constructArray(int) - Method in class org.codehaus.jackson.map.util.ArrayBuilders.LongBuilder
-
- _constructArray(int) - Method in class org.codehaus.jackson.map.util.ArrayBuilders.ShortBuilder
-
- _constructArray(int) - Method in class org.codehaus.jackson.map.util.PrimitiveArrayBuilder
-
- _constructConstructor(Constructor<?>, boolean) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _constructCreatorMethod(Method) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _constructError(String, Throwable) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _constructError(String) - Method in class org.codehaus.jackson.JsonParser
-
- _constructField(Field) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _constructMethod(Method) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _constructNoTypeResolverBuilder() - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
Helper method for dealing with "no type info" marker; can't be null
(as it'd be replaced by default typing)
- _constructor - Variable in class org.codehaus.jackson.map.introspect.AnnotatedConstructor
-
- _constructorArguments - Variable in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- _constructors - Variable in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Single argument constructors the class has, if any.
- _constructStdTypeResolverBuilder() - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- _constructType(Type, TypeBindings) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Factory method that can be used if type information is passed
as Java typing returned from getGenericXxx
methods
(usually for a return or argument type).
- _constructWriter(SerializationConfig, TypeBindings, PropertyBuilder, boolean, String, AnnotatedMember) - Method in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Secondary helper method for constructing
BeanPropertyWriter
for
given member (field or method).
- _containedIn(Class<?>, HashSet<ClassKey>) - Static method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
- _context - Variable in class org.codehaus.jackson.impl.ByteSourceBootstrapper
-
- _context - Variable in class org.codehaus.jackson.io.MergedStream
-
- _context - Variable in class org.codehaus.jackson.io.UTF8Writer
-
- _context - Variable in class org.codehaus.jackson.map.MappingIterator
-
- _contextAnnotations - Variable in class org.codehaus.jackson.map.BeanProperty.Std
-
Annotations defined in the context class (if any); may be null
if no annotations were found
- _contextAnnotations - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
Class that contains this property (either class that declares
the property or one of its subclasses), class that is
deserialized using deserializer that contains this property.
- _contextAnnotations - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Annotations from context (most often, class that declares property,
or in case of sub-class serializer, from that sub-class)
- _contextClass - Variable in class org.codehaus.jackson.map.type.TypeBindings
-
Specific class to use for resolving all types, for methods and fields
class and its superclasses and -interfaces contain.
- _contextType - Variable in class org.codehaus.jackson.map.type.TypeBindings
-
Context type used for resolving all types, if specified.
- _convert(Object, JavaType) - Method in class org.codehaus.jackson.map.ObjectMapper
-
- _copyTo(Object, int, Object[], int) - Method in class org.codehaus.jackson.map.util.ObjectBuffer
-
- _count - Variable in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Total number of Names in the symbol table;
only used for child tables.
- _createAndCache2(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
Method that handles actual construction (via factory) and caching (both
intermediate and eventual)
- _createAndCacheUntypedSerializer(Class<?>, BeanProperty) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
Method that will try to construct a value serializer; and if
one is successfully created, cache it for reuse.
- _createAndCacheUntypedSerializer(JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- _createAndCacheValueDeserializer(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
Method that will try to create a deserializer for given type,
and resolve and cache it if necessary
- _createContext(Object, boolean) - Method in class org.codehaus.jackson.JsonFactory
-
Overridable factory method that actually instantiates desired
context object.
- _createDeserializationContext(JsonParser, DeserializationConfig) - Method in class org.codehaus.jackson.map.ObjectMapper
-
- _createDeserializationContext(JsonParser, DeserializationConfig) - Method in class org.codehaus.jackson.map.ObjectReader
-
- _createDeserializer(DeserializationConfig, JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- _createFromStringFallbacks(String) - Method in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- _createJsonGenerator(Writer, IOContext) - Method in class org.codehaus.jackson.JsonFactory
-
Overridable factory method that actually instantiates generator for
given
Writer
and context object.
- _createJsonGenerator(Writer, IOContext) - Method in class org.codehaus.jackson.smile.SmileFactory
-
Overridable factory method that actually instantiates desired
generator.
- _createJsonGenerator(OutputStream, IOContext) - Method in class org.codehaus.jackson.smile.SmileFactory
-
- _createJsonParser(InputStream, IOContext) - Method in class org.codehaus.jackson.JsonFactory
-
Overridable factory method that actually instantiates desired parser
given
InputStream
and context object.
- _createJsonParser(Reader, IOContext) - Method in class org.codehaus.jackson.JsonFactory
-
Overridable factory method that actually instantiates parser
using given
Reader
object for reading content.
- _createJsonParser(byte[], int, int, IOContext) - Method in class org.codehaus.jackson.JsonFactory
-
Overridable factory method that actually instantiates parser
using given
Reader
object for reading content
passed as raw byte array.
- _createJsonParser(InputStream, IOContext) - Method in class org.codehaus.jackson.smile.SmileFactory
-
Overridable factory method that actually instantiates desired
parser.
- _createJsonParser(Reader, IOContext) - Method in class org.codehaus.jackson.smile.SmileFactory
-
Overridable factory method that actually instantiates desired
parser.
- _createJsonParser(byte[], int, int, IOContext) - Method in class org.codehaus.jackson.smile.SmileFactory
-
Overridable factory method that actually instantiates desired
parser.
- _createUntypedSerializer(JavaType, BeanProperty) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- _createUTF8JsonGenerator(OutputStream, IOContext) - Method in class org.codehaus.jackson.JsonFactory
-
Overridable factory method that actually instantiates generator for
given
OutputStream
and context object, using UTF-8 encoding.
- _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class org.codehaus.jackson.JsonFactory
-
- _createWriter(OutputStream, JsonEncoding, IOContext) - Method in class org.codehaus.jackson.smile.SmileFactory
-
- _creator - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty.InnerClassProperty
-
Single-arg constructor we use for value instantiation.
- _creatorMethods - Variable in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Single argument static methods that might be usable
as factory methods
- _creatorMinLevel - Variable in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- _creatorProperties - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- _ctorParameters - Variable in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- _currentEscape - Variable in class org.codehaus.jackson.impl.WriterBasedGenerator
-
When custom escapes are used, this member variable can be used to
store escape to use
- _currentName - Variable in class org.codehaus.jackson.impl.JsonReadContext
-
- _currentName - Variable in class org.codehaus.jackson.impl.JsonWriteContext
-
Name of the field of which value is to be parsed; only
used for OBJECT contexts
- _currentObject() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- _currInputProcessed - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Number of characters/bytes that were contained in previous blocks
(blocks that were already processed prior to the current buffer).
- _currInputRow - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Current row location of current point in input buffer, starting
from 1, if available.
- _currInputRowStart - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Current index of the first character of the current row in input
buffer.
- _currToken - Variable in class org.codehaus.jackson.JsonParser
-
- _customIdResolver - Variable in class org.codehaus.jackson.map.jsontype.impl.StdTypeResolverBuilder
-
- _dataHandlerDeserializer - Variable in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- _dataHandlerSerializer - Variable in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- _dateFormat - Variable in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- _dateFormat - Variable in class org.codehaus.jackson.map.MapperConfig.Base
-
Custom date format to use for de-serialization.
- _dateFormat - Variable in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
Lazily acquired and instantiated formatter object: initialized
first time it is needed, reused afterwards.
- _declaredType - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Type property is declared to have, either in class definition
or associated annotations.
- _decodeBase64(String, ByteArrayBuilder, Base64Variant) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
Helper method that can be used for base64 decoding in cases where
encoded content has already been read as a String.
- _decodeBase64(Base64Variant) - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
Efficient handling for incremental parsing of base64-encoded
textual content.
- _decodeBase64(Base64Variant) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
Efficient handling for incremental parsing of base64-encoded
textual content.
- _decodeBase64(Base64Variant) - Method in class org.codehaus.jackson.smile.SmileParser
-
- _decodeBase64Escape(Base64Variant, int, int) - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- _decodeBase64Escape(Base64Variant, char, int) - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- _decodeCharForError(int) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _decodeEscaped() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
Method that sub-classes must implement to support escaped sequences
in base64-encoded sections.
- _decodeEscaped() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- _decodeEscaped() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _decodeShortAsciiValue(int) - Method in class org.codehaus.jackson.smile.SmileParser
-
- _decodeShortUnicodeValue(int) - Method in class org.codehaus.jackson.smile.SmileParser
-
- _decodeSurrogate(int, int) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- _defaultAnnotationsToUse - Variable in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
- _defaultBean - Variable in class org.codehaus.jackson.map.ser.PropertyBuilder
-
If a property has serialization inclusion value of
JsonSerialize.Inclusion.ALWAYS
, we need to know the default
value of the bean, to know if property value equals default
one.
- _defaultConstructor - Variable in class org.codehaus.jackson.map.deser.impl.CreatorCollector
-
- _defaultConstructor - Variable in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Default constructor of the annotated class, if it has one.
- _defaultCreator - Variable in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- _defaultFilter - Variable in class org.codehaus.jackson.map.ser.impl.SimpleFilterProvider
-
This is the filter we return in case no mapping was found for
given id; default is 'null' (in which case caller typically
reports an error), but can be set to an explicit filter.
- _defaultImpl - Variable in class org.codehaus.jackson.map.jsontype.impl.StdTypeResolverBuilder
-
- _defaultImpl - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
-
Type to use as the default implementation, if type id is
missing or can not be resolved.
- _defaultImplDeserializer - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
-
- _defaultMapper - Variable in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
If no mapper was specified when constructed, and no configuration
calls are made, a default mapper is constructed.
- _defaultPackage - Variable in class org.codehaus.jackson.mrbean.AbstractTypeMaterializer
-
Package name to use as prefix for generated classes.
- _defaultPrettyPrinter() - Method in class org.codehaus.jackson.map.ObjectMapper
-
Helper method that should return default pretty-printer to
use for generators constructed by this mapper, when instructed
to use default pretty printer.
- _defaultState - Variable in enum org.codehaus.jackson.smile.SmileGenerator.Feature
-
- _defaultTypeId(Class<?>) - Static method in class org.codehaus.jackson.map.jsontype.impl.TypeNameIdResolver
-
If no name was explicitly given for a class, we will just
use non-qualified class name
- _defaultValues - Variable in class org.codehaus.jackson.map.deser.impl.PropertyBasedCreator
-
If some property values must always have a non-null value (like
primitive types do), this array contains such default values.
- _delegate - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty.InnerClassProperty
-
Actual property that we use after value construction.
- _delegateCreator - Variable in class org.codehaus.jackson.map.deser.impl.CreatorCollector
-
- _delegateCreator - Variable in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- _delegateDeserializer - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Deserializer that is used iff delegate-based creator is
to be used for deserializing from JSON Object.
- _delegateDeserializer - Variable in class org.codehaus.jackson.map.deser.std.CollectionDeserializer
-
Deserializer that is used iff delegate-based creator is
to be used for deserializing from JSON Object.
- _delegateDeserializer - Variable in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
Deserializer that is used iff delegate-based creator is
to be used for deserializing from JSON Object.
- _delegateDeserializer - Variable in class org.codehaus.jackson.map.deser.std.StringCollectionDeserializer
-
Deserializer that is used iff delegate-based creator is
to be used for deserializing from JSON Object.
- _delegateType - Variable in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- _desc(String) - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- _deserializationConfig - Variable in class org.codehaus.jackson.map.ObjectMapper
-
Configuration object that defines basic global
settings for the serialization process
- _deserialize(JsonParser, DeserializationContext, Object, int) - Method in class org.codehaus.jackson.map.deser.impl.ExternalTypeHandler
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.FromStringDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.FromStringDeserializer.CharsetDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.FromStringDeserializer.CurrencyDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.FromStringDeserializer.InetAddressDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.FromStringDeserializer.LocaleDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.FromStringDeserializer.PatternDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.FromStringDeserializer.TimeZoneDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.FromStringDeserializer.URIDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.FromStringDeserializer.URLDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.FromStringDeserializer.UUIDDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.ext.CoreXMLDeserializers.DurationDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.ext.CoreXMLDeserializers.QNameDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.ext.DOMDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.ext.DOMDeserializer.DocumentDeserializer
-
- _deserialize(String, DeserializationContext) - Method in class org.codehaus.jackson.map.ext.DOMDeserializer.NodeDeserializer
-
- _deserializeEmbedded(Object, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.FromStringDeserializer
-
- _deserializeEmbedded(Object, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.FromStringDeserializer.UUIDDeserializer
-
- _deserializeIfNatural(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.AbstractDeserializer
-
- _deserializeIfNatural(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeDeserializer
-
Helper method used to check if given parser might be pointing to
a "natural" value, and one that would be acceptable as the
result value (compatible with declared base type)
- _deserializer - Variable in class org.codehaus.jackson.map.MappingIterator
-
- _deserializer - Variable in class org.codehaus.jackson.xc.XmlAdapterJsonDeserializer
-
- _deserializerProvider - Variable in class org.codehaus.jackson.map.ObjectMapper
-
Object that manages access to deserializers used for deserializing
JSON content into Java objects, including possible caching
of the deserializers.
- _deserializers - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
-
For efficient operation we will lazily build mappings from type ids
to actual deserializers, once needed.
- _deserializers - Variable in class org.codehaus.jackson.map.module.SimpleModule
-
- _deserializeTypedUsingDefaultImpl(JsonParser, DeserializationContext, TokenBuffer) - Method in class org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeDeserializer
-
- _deserializeUsingCreator(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
- _deserializeUsingPropertyBased(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Method called to deserialize bean using "property-based creator":
this means that a non-default constructor or factory method is
called, and then possibly other setters.
- _deserProvider - Variable in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- _detectors - Variable in class org.codehaus.jackson.format.DataFormatDetector
-
Ordered list of factories which both represent data formats to
detect (in precedence order, starting with highest) and are used
for actual detection.
- _directClassMappings - Variable in class org.codehaus.jackson.map.deser.CustomDeserializerFactory
-
Deprecated.
Direct mappings that are used for exact class and interface type
matches.
- _directClassMappings - Variable in class org.codehaus.jackson.map.ser.CustomSerializerFactory
-
Direct mappings that are only used for exact class type
matches, but not for sub-class checks.
- _dirty - Variable in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Flag that indicates if any changes have been made to the data;
used to both determine if bucket array needs to be copied when
(first) change is made, and potentially if updated bucket list
is to be resync'ed back to master instance.
- _doAddInjectable(Object, AnnotatedMember) - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- _doFindDeserializationType(Annotated, JavaType, String) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- _doFindSuperInterfaceChain(HierarchicType, Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- _domImpl - Variable in class org.codehaus.jackson.map.ext.DOMSerializer
-
- _doubleCreator - Variable in class org.codehaus.jackson.map.deser.impl.CreatorCollector
-
- _dynamicSerializers - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
In case serializer is not known statically (i.e.
- _dynamicSerializers - Variable in class org.codehaus.jackson.map.ser.std.AsArraySerializerBase
-
If element type can not be statically determined, mapping from
runtime type to serializer is handled using this object
- _dynamicSerializers - Variable in class org.codehaus.jackson.map.ser.std.ObjectArraySerializer
-
If element type can not be statically determined, mapping from
runtime type to serializer is handled using this object
- _dynamicValueSerializers - Variable in class org.codehaus.jackson.map.ser.std.MapSerializer
-
If value type can not be statically determined, mapping from
runtime value types to serializers are stored in this object.
- _elementClass - Variable in class org.codehaus.jackson.map.deser.std.ObjectArrayDeserializer
-
Type of contained elements: needed for constructing actual
result array
- _elementDeserializer - Variable in class org.codehaus.jackson.map.deser.std.ObjectArrayDeserializer
-
Element deserializer
- _elementSerializer - Variable in class org.codehaus.jackson.map.ser.std.AsArraySerializerBase
-
Value serializer to use, if it can be statically determined
- _elementSerializer - Variable in class org.codehaus.jackson.map.ser.std.ObjectArraySerializer
-
Value serializer to use, if it can be statically determined.
- _elementSerializer - Variable in class org.codehaus.jackson.map.ser.std.StdArraySerializers.StringArraySerializer
-
Value serializer to use, if it's not the standard one
(if it is we can optimize serialization a lot)
- _elementType - Variable in class org.codehaus.jackson.map.ser.std.AsArraySerializerBase
-
- _elementType - Variable in class org.codehaus.jackson.map.ser.std.ObjectArraySerializer
-
Declared type of element entries
- _elementType - Variable in class org.codehaus.jackson.map.type.CollectionLikeType
-
Type of elements in collection
- _elementTypeDeserializer - Variable in class org.codehaus.jackson.map.deser.std.ObjectArrayDeserializer
-
If element instances have polymorphic type information, this
is the type deserializer that can handle it
- _emptyArray - Variable in class org.codehaus.jackson.map.type.ArrayType
-
We will also keep track of shareable instance of empty array,
since it usually needs to be constructed any way; and because
it is essentially immutable and thus can be shared.
- _encoding - Variable in class org.codehaus.jackson.io.IOContext
-
Encoding used by the underlying stream, if known.
- _entityBuffer - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
6 character temporary buffer allocated if needed, for constructing
escape sequences
- _entityBuffer - Variable in class org.codehaus.jackson.impl.WriterBasedGenerator
-
Short (14 char) temporary buffer allocated if needed, for constructing
escape sequences
- _enumClass - Variable in class org.codehaus.jackson.map.deser.std.EnumDeserializer.FactoryBasedDeserializer
-
- _enumClass - Variable in class org.codehaus.jackson.map.deser.std.EnumMapDeserializer
-
- _enumClass - Variable in class org.codehaus.jackson.map.deser.std.EnumSetDeserializer
-
- _enumClass - Variable in class org.codehaus.jackson.map.util.EnumResolver
-
- _enumDeserializer - Variable in class org.codehaus.jackson.map.deser.std.EnumSetDeserializer
-
- _enums - Variable in class org.codehaus.jackson.map.util.EnumResolver
-
- _enumsById - Variable in class org.codehaus.jackson.map.util.EnumResolver
-
- _enumSerializerOverride - Variable in class org.codehaus.jackson.map.ser.CustomSerializerFactory
-
And for Enum handling we may specify a single default
serializer to use, regardless of actual enumeration.
- _expLength - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Length of the exponent part of the number, if any, not
including 'e' marker or sign, just digits.
- _externalTypeIdHandler - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Handler that we need iff any of properties uses external
type id.
- _factory - Variable in class org.codehaus.jackson.map.deser.std.EnumDeserializer.FactoryBasedDeserializer
-
- _factory - Variable in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
Factory responsible for constructing actual deserializers, if not
one of pre-configured types.
- _factoryConfig - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Configuration settings for this factory; immutable instance (just like this
factory), new version created via copy-constructor (fluent-style)
- _factoryConfig - Variable in class org.codehaus.jackson.map.ser.BeanSerializerFactory
-
Configuration settings for this factory; immutable instance (just like this
factory), new version created via copy-constructor (fluent-style)
- _featureFlags - Variable in class org.codehaus.jackson.map.DeserializationContext
-
- _featureFlags - Variable in class org.codehaus.jackson.mrbean.AbstractTypeMaterializer
-
Bit set that contains all enabled features
- _features - Variable in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _features - Variable in class org.codehaus.jackson.JsonParser
-
- _field - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty.FieldProperty
-
Actual field to set when deserializing this property.
- _field - Variable in class org.codehaus.jackson.map.introspect.AnnotatedField
-
- _field - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Field that contains the property value for field-accessible
properties.
- _fieldMinLevel - Variable in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- _fieldName - Variable in class org.codehaus.jackson.map.JsonMappingException.Reference
-
Name of field (for beans) or key (for Maps) that is part
of the reference.
- _fields - Variable in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Member fields of interest: ones that are either public,
or have at least one annotation.
- _fields - Variable in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- _filteredProperties - Variable in class org.codehaus.jackson.map.ser.BeanSerializerBuilder
-
Optional array of filtered property writers; if null, no
view-based filtering is performed.
- _filteredProps - Variable in class org.codehaus.jackson.map.ser.std.BeanSerializerBase
-
Optional filters used to suppress output of properties that
are only to be included in certain views
- _filterId - Variable in class org.codehaus.jackson.map.ser.BeanSerializerBuilder
-
Id of the property filter to use for POJO, if any.
- _filterProvider - Variable in class org.codehaus.jackson.map.SerializationConfig
-
Object used for resolving filter ids to filter instances.
- _filtersById - Variable in class org.codehaus.jackson.map.ser.impl.SimpleFilterProvider
-
Mappings from ids to filters.
- _findAndAddDynamic(PropertySerializerMap, Class<?>, SerializerProvider) - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- _findAndAddDynamic(PropertySerializerMap, Class<?>, SerializerProvider) - Method in class org.codehaus.jackson.map.ser.impl.UnwrappingBeanPropertyWriter
-
- _findAndAddDynamic(PropertySerializerMap, Class<?>, SerializerProvider) - Method in class org.codehaus.jackson.map.ser.std.AsArraySerializerBase
-
- _findAndAddDynamic(PropertySerializerMap, JavaType, SerializerProvider) - Method in class org.codehaus.jackson.map.ser.std.AsArraySerializerBase
-
- _findAndAddDynamic(PropertySerializerMap, Class<?>, SerializerProvider) - Method in class org.codehaus.jackson.map.ser.std.MapSerializer
-
- _findAndAddDynamic(PropertySerializerMap, JavaType, SerializerProvider) - Method in class org.codehaus.jackson.map.ser.std.MapSerializer
-
- _findAndAddDynamic(PropertySerializerMap, Class<?>, SerializerProvider) - Method in class org.codehaus.jackson.map.ser.std.ObjectArraySerializer
-
- _findAndAddDynamic(PropertySerializerMap, JavaType, SerializerProvider) - Method in class org.codehaus.jackson.map.ser.std.ObjectArraySerializer
-
- _findCachedDesc(JavaType) - Method in class org.codehaus.jackson.map.introspect.BasicClassIntrospector
-
Method called to see if type is one of core JDK types
that we have cached for efficiency.
- _findCachedDeserializer(JavaType) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- _findCustomArrayDeserializer(ArrayType, DeserializationConfig, DeserializerProvider, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- _findCustomArrayDeserializer(ArrayType, DeserializationConfig, DeserializerProvider, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- _findCustomBeanDeserializer(JavaType, DeserializationConfig, DeserializerProvider, BasicBeanDescription, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- _findCustomCollectionDeserializer(CollectionType, DeserializationConfig, DeserializerProvider, BasicBeanDescription, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- _findCustomCollectionDeserializer(CollectionType, DeserializationConfig, DeserializerProvider, BasicBeanDescription, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- _findCustomCollectionLikeDeserializer(CollectionLikeType, DeserializationConfig, DeserializerProvider, BasicBeanDescription, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- _findCustomCollectionLikeDeserializer(CollectionLikeType, DeserializationConfig, DeserializerProvider, BasicBeanDescription, BeanProperty, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- _findCustomEnumDeserializer(Class<?>, DeserializationConfig, BasicBeanDescription, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- _findCustomEnumDeserializer(Class<?>, DeserializationConfig, BasicBeanDescription, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- _findCustomMapDeserializer(MapType, DeserializationConfig, DeserializerProvider, BasicBeanDescription, BeanProperty, KeyDeserializer, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- _findCustomMapDeserializer(MapType, DeserializationConfig, DeserializerProvider, BasicBeanDescription, BeanProperty, KeyDeserializer, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- _findCustomMapLikeDeserializer(MapLikeType, DeserializationConfig, DeserializerProvider, BasicBeanDescription, BeanProperty, KeyDeserializer, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- _findCustomMapLikeDeserializer(MapLikeType, DeserializationConfig, DeserializerProvider, BasicBeanDescription, BeanProperty, KeyDeserializer, TypeDeserializer, JsonDeserializer<?>) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- _findCustomTreeNodeDeserializer(Class<? extends JsonNode>, DeserializationConfig, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BasicDeserializerFactory
-
- _findCustomTreeNodeDeserializer(Class<? extends JsonNode>, DeserializationConfig, BeanProperty) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- _findDefaultImplDeserializer(DeserializationContext) - Method in class org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
-
- _findDeserializer(DeserializationContext, String) - Method in class org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
-
- _findExplicitUntypedSerializer(Class<?>, BeanProperty) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
Method that will try to find a serializer, either from cache
or by constructing one; but will not return an "unknown" serializer
if this can not be done but rather returns null.
- _findInterfaceMapping(Class<?>, ClassKey) - Method in class org.codehaus.jackson.map.module.SimpleSerializers
-
- _findInterfaceMapping(Class<?>, ClassKey) - Method in class org.codehaus.jackson.map.ser.CustomSerializerFactory
-
- _findPropertyFields(Collection<String>, boolean) - Method in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- _findRootDeserializer(DeserializationConfig, JavaType) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method called to locate deserializer for the passed root-level value.
- _findRootDeserializer(DeserializationConfig, JavaType) - Method in class org.codehaus.jackson.map.ObjectReader
-
Method called to locate deserializer for the passed root-level value.
- _findSubclassDeserializer(DeserializationContext, Object, TokenBuffer) - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Helper method called to (try to) locate deserializer for given sub-type of
type that this deserializer handles.
- _findSuperClassChain(Type, Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- _findSuperInterfaceChain(Type, Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- _findSuperTypeChain(Class<?>, Class<?>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Helper method used to find inheritance (implements, extends) path
between given types, if one exists (caller generally checks before
calling this method).
- _findTypeResolver(MapperConfig<?>, Annotated, JavaType) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
Helper method called to construct and initialize instance of
TypeResolverBuilder
if given annotated element indicates one is needed.
- _findView(ObjectMapper, Annotation[]) - Method in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
- _finishNumberToken(int) - Method in class org.codehaus.jackson.smile.SmileParser
-
- _finishString() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- _finishString() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- _finishString() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _finishString() - Method in class org.codehaus.jackson.smile.SmileParser
-
- _finishString2() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- _finishToken() - Method in class org.codehaus.jackson.smile.SmileParser
-
Method called to finish parsing of a token so that token contents
are retriable
- _first - Variable in class org.codehaus.jackson.util.TokenBuffer
-
First segment, for contents this buffer has
- _flushBuffer() - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- _flushBuffer() - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- _flushBuffer() - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- _forceTypeInformation - Variable in class org.codehaus.jackson.map.ser.std.JsonValueSerializer
-
This is a flag that is set in rare (?) cases where this serializer
is used for "natural" types (boolean, int, String, double); and where
we actually must force type information wrapping, even though
one would not normally be added.
- _forClass - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
- _formatISO8601 - Variable in class org.codehaus.jackson.map.util.StdDateFormat
-
- _formatISO8601_z - Variable in class org.codehaus.jackson.map.util.StdDateFormat
-
- _formatPlain - Variable in class org.codehaus.jackson.map.util.StdDateFormat
-
- _formatRFC1123 - Variable in class org.codehaus.jackson.map.util.StdDateFormat
-
- _forSerialization - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
True if introspection is done for serialization (giving
precedence for serialization annotations), or not (false, deserialization)
- _fractLength - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Length of the fractional part (not including decimal
point or exponent), in characters.
- _from - Variable in class org.codehaus.jackson.map.JsonMappingException.Reference
-
Object through which reference was resolved.
- _fromArrayType(GenericArrayType, TypeBindings) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- _fromBooleanCreator - Variable in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- _fromClass(Class<?>, TypeBindings) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- _fromDoubleCreator - Variable in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- _fromIntCreator - Variable in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- _fromLongCreator - Variable in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- _fromParameterizedClass(Class<?>, List<JavaType>) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
Method used by
TypeParser
when generics-aware version
is constructed.
- _fromParamType(ParameterizedType, TypeBindings) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
This method deals with parameterized types, that is,
first class generic classes.
- _fromStringCreator - Variable in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- _fromVariable(TypeVariable<?>, TypeBindings) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- _fromWildcard(WildcardType, TypeBindings) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- _function - Variable in class org.codehaus.jackson.map.util.JSONPObject
-
JSONP function name to use for serialization
- _generatorFeatures - Variable in class org.codehaus.jackson.JsonFactory
-
Currently enabled generator features.
- _generatorFeatures - Variable in class org.codehaus.jackson.util.TokenBuffer
-
- _genericType - Variable in class org.codehaus.jackson.map.type.HierarchicType
-
- _getBufferRecycler() - Method in class org.codehaus.jackson.JsonFactory
-
Method used by factory to create buffer recycler instances
for parsers and generators.
- _getByteArrayBuilder() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- _getCharDesc(int) - Static method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _getter - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty.SetterlessProperty
-
Get method for accessing property value used to access property
(of Collection or Map type) to modify.
- _getterMinLevel - Variable in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- _getters - Variable in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- _getText2(JsonToken) - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- _getText2(JsonToken) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _got32BitFloat - Variable in class org.codehaus.jackson.smile.SmileParser
-
Specific flag that is set when we encountered a 32-bit
floating point value; needed since numeric super classes do
not track distinction between float and double, but Smile
format does, and we want to retain that separation.
- _handleApostropheValue() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- _handleApostropheValue() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _handleContextualResolvable(JsonSerializer<Object>, BeanProperty) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- _handledType - Variable in class org.codehaus.jackson.map.ser.std.SerializerBase
-
- _handleEOF() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
Method called when an EOF is encountered between tokens.
- _handleEOF() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
Method sub-classes need to implement
- _handleEOF() - Method in class org.codehaus.jackson.node.TreeTraversingParser
-
- _handleEOF() - Method in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- _handleFieldName() - Method in class org.codehaus.jackson.smile.SmileParser
-
Method that handles initial token type recognition for token
that has to be either FIELD_NAME or END_OBJECT.
- _handleInvalidNumberStart(int, boolean) - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
Method called if expected numeric value (due to leading sign) does not
look like a number
- _handleInvalidNumberStart(int, boolean) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
Method called if expected numeric value (due to leading sign) does not
look like a number
- _handlerInstantiator - Variable in class org.codehaus.jackson.map.MapperConfig.Base
-
Object used for creating instances of handlers (serializers, deserializers,
type and type id resolvers), given class to instantiate.
- _handleSingleArgumentConstructor(DeserializationConfig, BasicBeanDescription, VisibilityChecker<?>, AnnotationIntrospector, CreatorCollector, AnnotatedConstructor, boolean, boolean) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- _handleSingleArgumentFactory(DeserializationConfig, BasicBeanDescription, VisibilityChecker<?>, AnnotationIntrospector, CreatorCollector, AnnotatedMethod, boolean) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
- _handleUnexpectedValue(int) - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
Method for handling cases where first non-space character
of an expected value token is not legal for standard JSON content.
- _handleUnexpectedValue(int) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
Method for handling cases where first non-space character
of an expected value token is not legal for standard JSON content.
- _handleUnknownKeyDeserializer(JavaType) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- _handleUnknownValueDeserializer(JavaType) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- _handleUnrecognizedCharacterEscape(char) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _handleUnusualFieldName(int) - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
Method called when we see non-white space character other
than double quote, when expecting a field name.
- _handleUnusualFieldName(int) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
Method called when we see non-white space character other
than double quote, when expecting a field name.
- _hasDefaultCreator - Variable in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
- _hashCode - Variable in class org.codehaus.jackson.map.jsontype.NamedType
-
- _hashCode - Variable in class org.codehaus.jackson.map.ser.impl.SerializerCache.TypeKey
-
- _hashCode - Variable in class org.codehaus.jackson.sym.Name
-
- _hashCode - Variable in class org.codehaus.jackson.type.JavaType
-
- _hashMapSuperInterfaceChain(HierarchicType) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- _hashToIndex(int) - Method in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Helper method that takes in a "raw" hash value, shuffles it as necessary,
and truncates to be used as the index.
- _hasNextChecked - Variable in class org.codehaus.jackson.map.MappingIterator
-
- _idFrom(Object, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.ClassNameIdResolver
-
- _idResolver - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
-
- _idResolver - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
-
- _idToType - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeNameIdResolver
-
Mappings from type id to JavaType, used for deserialization
- _idType - Variable in class org.codehaus.jackson.map.jsontype.impl.StdTypeResolverBuilder
-
- _ignorableProperties - Variable in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
- _ignorableProps - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
In addition to properties that are set, we will also keep
track of recognized but ignorable properties: these will
be skipped without errors or warnings.
- _ignorableProps - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerBuilder
-
Set of names of properties that are recognized but are to be ignored for deserialization
purposes (meaning no exception is thrown, value is just skipped).
- _ignoreAllUnknown - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Flag that can be set to ignore and skip unknown properties.
- _ignoreAllUnknown - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerBuilder
-
Flag that can be set to ignore and skip unknown properties.
- _ignoredEntries - Variable in class org.codehaus.jackson.map.ser.std.MapSerializer
-
Set of entries to omit during serialization, if any
- _ignoredPropertyNames - Variable in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Set of properties that can be ignored during deserialization, due
to being marked as ignored.
- _ignoredPropertyNames - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Lazily collected list of properties that can be implicitly
ignored during serialization; only updated when collecting
information for deserialization purposes
- _ignoredPropertyNamesForDeser - Variable in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- _ignoredPropertyNamesForDeser - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Alternate set of property names that have been marked for
explicit ignoral for deserialization: needed to deal with
1.x definition of ignorable with respect to "any setter"
(see [JACKSON-313], [JACKSON-383])
- _implementedType - Variable in class org.codehaus.jackson.mrbean.BeanBuilder
-
Abstract class or interface that the bean is created to extend or implement.
- _in - Variable in class org.codehaus.jackson.format.InputAccessor.Std
-
- _in - Variable in class org.codehaus.jackson.impl.ByteSourceBootstrapper
-
- _includeAs - Variable in class org.codehaus.jackson.map.jsontype.impl.StdTypeResolverBuilder
-
- _includeInViews - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Alternate set of property writers used when view-based filtering
is available for the Bean.
- _incompleteDeserializers - Variable in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
During deserializer construction process we may need to keep track of partially
completed deserializers, to resolve cyclic dependencies.
- _index - Variable in class org.codehaus.jackson.JsonStreamContext
-
Index of the currently processed entry.
- _index - Variable in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
Index of the parameter within argument list
- _index - Variable in class org.codehaus.jackson.map.JsonMappingException.Reference
-
Index within a
Collection
instance that contained
the reference; used if index is relevant and available.
- _indexMask - Variable in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Mask used to get index from hash values; equal to
_buckets.length - 1
, when _buckets.length is
a power of two.
- _initForReading(JsonParser) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Method called to ensure that given parser is ready for reading
content for data binding.
- _initForReading(JsonParser) - Static method in class org.codehaus.jackson.map.ObjectReader
-
- _injectables - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
List of
ValueInjector
s, if any injectable values are
expected by the bean; otherwise null.
- _injectables - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerBuilder
-
Value injectors for deserialization
- _injectables - Variable in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- _injectables - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Lazily collected list of members that were annotated to
indicate that they represent mutators for deserializer
value injection.
- _injectableValueId - Variable in class org.codehaus.jackson.map.deser.impl.CreatorProperty
-
Id of value to inject, if value injection should be used for this parameter
(in addition to, or instead of, regular deserialization).
- _injectableValues - Variable in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- _injectableValues - Variable in class org.codehaus.jackson.map.ObjectMapper
-
Provider for values to inject in deserialized POJOs.
- _injectableValues - Variable in class org.codehaus.jackson.map.ObjectReader
-
Values that can be injected during deserialization, if any.
- _inputBuffer - Variable in class org.codehaus.jackson.impl.ByteSourceBootstrapper
-
- _inputBuffer - Variable in class org.codehaus.jackson.impl.ReaderBasedParser
-
Current buffer from which data is read; generally data is read into
buffer from input source.
- _inputBuffer - Variable in class org.codehaus.jackson.impl.ReaderBasedParserBase
-
Deprecated.
Current buffer from which data is read; generally data is read into
buffer from input source.
- _inputBuffer - Variable in class org.codehaus.jackson.impl.StreamBasedParserBase
-
Deprecated.
Current buffer from which data is read; generally data is read into
buffer from input source, but in some cases pre-loaded buffer
is handed to the parser.
- _inputBuffer - Variable in class org.codehaus.jackson.impl.Utf8StreamParser
-
Current buffer from which data is read; generally data is read into
buffer from input source, but in some cases pre-loaded buffer
is handed to the parser.
- _inputBuffer - Variable in class org.codehaus.jackson.smile.SmileParser
-
Current buffer from which data is read; generally data is read into
buffer from input source, but in some cases pre-loaded buffer
is handed to the parser.
- _inputDecorator - Variable in class org.codehaus.jackson.JsonFactory
-
Optional helper object that may decorate input sources, to do
additional processing on input during parsing.
- _inputEnd - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Index of character after last available one in the buffer.
- _inputProcessed - Variable in class org.codehaus.jackson.impl.ByteSourceBootstrapper
-
Current number of input units (bytes or chars) that were processed in
previous blocks,
before contents of current input buffer.
- _inputProcessed - Variable in class org.codehaus.jackson.smile.SmileParserBootstrapper
-
Current number of input units (bytes or chars) that were processed in
previous blocks,
before contents of current input buffer.
- _inputPtr - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Pointer to next available character in buffer
- _inputStream - Variable in class org.codehaus.jackson.impl.StreamBasedParserBase
-
Deprecated.
Input stream that can be used for reading more content, if one
in use.
- _inputStream - Variable in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _inputStream - Variable in class org.codehaus.jackson.smile.SmileParser
-
Input stream that can be used for reading more content, if one
in use.
- _inputType - Variable in class org.codehaus.jackson.map.deser.std.EnumDeserializer.FactoryBasedDeserializer
-
- _intCreator - Variable in class org.codehaus.jackson.map.deser.impl.CreatorCollector
-
- _interfaceMappings - Variable in class org.codehaus.jackson.map.module.SimpleSerializers
-
Interface-based matches.
- _interfaceMappings - Variable in class org.codehaus.jackson.map.ser.CustomSerializerFactory
-
And finally interface-based matches.
- _intern - Variable in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Whether canonical symbol Strings are to be intern()ed before added
to the table or not
- _intern - Variable in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Whether canonical symbol Strings are to be intern()ed before added
to the table or not
- _internalName - Variable in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
Original internal name, derived from accessor, of this
property.
- _internalSettings - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- _intLength - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Length of integer part of the number, in characters
- _ioContext - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
I/O context for this reader.
- _ioContext - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
- _ioContext - Variable in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- _ioContext - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
- _isContainer - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty.ManagedReferenceProperty
-
Flag that indicates whether property to handle is a container type
(array, Collection, Map) or not.
- _isDefaultDeserializer - Variable in class org.codehaus.jackson.map.deser.std.StringCollectionDeserializer
-
Flag that indicates whether value deserializer is the standard
Jackson-provided one; if it is, we can use more efficient
handling.
- _isGetterMinLevel - Variable in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- _isIgnorable(Annotated) - Method in class org.codehaus.jackson.map.introspect.JacksonAnnotationIntrospector
-
- _isIncludableMethod(Method, MethodFilter) - Method in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
- _isTyped - Variable in class org.codehaus.jackson.map.ser.impl.SerializerCache.TypeKey
-
Indicator of whether serializer stored has a type serializer
wrapper around it or not; if not, it is "untyped" serializer;
if it has, it is "typed"
- _javaName - Variable in enum org.codehaus.jackson.JsonEncoding
-
- _jaxbIntrospectorClass - Variable in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
To support optional dependency to Jackson-XC module (needed if and
when JAXB annotations are used for configuration)
- _jaxbPackageName - Variable in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- _jsonFactory - Variable in class org.codehaus.jackson.map.ObjectMapper
-
- _jsonFactory - Variable in class org.codehaus.jackson.map.ObjectReader
-
- _jsonFactory - Variable in class org.codehaus.jackson.map.ObjectWriter
-
- _jsonpFunctionName - Variable in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
JSONP function name to use for automatic JSONP wrapping, if any;
if null, no JSONP wrapping is done.
- _jsonValueGetters - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Method(s) marked with 'JsonValue' annotation
- _jsonValueMethod - Variable in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
- _keyClass - Variable in class org.codehaus.jackson.map.deser.std.StdKeyDeserializer
-
- _keyDeserializer - Variable in class org.codehaus.jackson.map.deser.std.EnumMapDeserializer
-
- _keyDeserializer - Variable in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
Key deserializer used, if not null.
- _keyDeserializers - Variable in class org.codehaus.jackson.map.deser.std.StdKeyDeserializers
-
- _keyDeserializers - Variable in class org.codehaus.jackson.map.module.SimpleModule
-
- _keyEnums - Variable in class org.codehaus.jackson.map.ser.std.EnumMapSerializer
-
If we know enumeration used as key, this will contain
value set to use for serialization
- _keySerializer - Variable in class org.codehaus.jackson.map.ser.std.MapSerializer
-
Key serializer to use, if it can be statically determined
- _keySerializer - Variable in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
Serializer used to output non-null keys of Maps (which will get
output as JSON Objects), if not null; if null, us the standard
default key serializer.
- _keySerializers - Variable in class org.codehaus.jackson.map.module.SimpleModule
-
- _keyType - Variable in class org.codehaus.jackson.map.ser.std.MapSerializer
-
Declared type of keys
- _keyType - Variable in class org.codehaus.jackson.map.type.MapLikeType
-
Type of keys of Map.
- _knownSerializers - Variable in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
For fast lookups, we will have a local non-shared read-only
map that contains serializers previously fetched.
- _last - Variable in class org.codehaus.jackson.util.TokenBuffer
-
Last segment of this buffer, one that is used
for appending more tokens
- _lastClearedToken - Variable in class org.codehaus.jackson.JsonParser
-
- _lineNr - Variable in class org.codehaus.jackson.impl.JsonReadContext
-
- _loadToHaveAtLeast(int) - Method in class org.codehaus.jackson.impl.StreamBasedParserBase
-
Deprecated.
Helper method that will try to load at least specified number bytes in
input buffer, possible moving existing data around if necessary
- _loadToHaveAtLeast(int) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
Helper method that will try to load at least specified number bytes in
input buffer, possible moving existing data around if necessary
- _loadToHaveAtLeast(int) - Method in class org.codehaus.jackson.smile.SmileParser
-
Helper method that will try to load at least specified number bytes in
input buffer, possible moving existing data around if necessary
- _locateTypeId(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.jsontype.impl.AsArrayTypeDeserializer
-
- _location - Variable in class org.codehaus.jackson.util.TokenBuffer.Parser
-
- _longCreator - Variable in class org.codehaus.jackson.map.deser.impl.CreatorCollector
-
- _longestCollisionList - Variable in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
We need to keep track of the longest collision list; this is needed
both to indicate problems with attacks and to allow flushing for
other cases.
- _longestCollisionList - Variable in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
We need to keep track of the longest collision list; this is needed
both to indicate problems with attacks and to allow flushing for
other cases.
- _mainHash - Variable in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Array of 2^N size, which contains combination
of 24-bits of hash (0 to indicate 'empty' slot),
and 8-bit collision bucket index (0 to indicate empty
collision bucket chain; otherwise subtract one from index)
- _mainHashMask - Variable in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Mask used to truncate 32-bit hash value to current hash array
size; essentially, hash array size - 1 (since hash array sizes
are 2^N).
- _mainNames - Variable in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Array that contains Name
instances matching
entries in _mainHash
.
- _majorVersion - Variable in class org.codehaus.jackson.Version
-
- _managedBuffers - Variable in class org.codehaus.jackson.io.UTF32Reader
-
- _managedProperty - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty.ManagedReferenceProperty
-
- _managedReferenceName - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
If property represents a managed (forward) reference
(see [JACKSON-235]), we will need name of reference for
later linking.
- _managedResource - Variable in class org.codehaus.jackson.io.IOContext
-
Flag that indicates whether underlying input/output source/target
object is fully managed by the owner of this context (parser or
generator).
- _map - Variable in class org.codehaus.jackson.map.ser.impl.ReadOnlyClassToSerializerMap
-
Actual mappings from type key to serializers
- _mapAbstractType2(DeserializationConfig, JavaType) - Method in class org.codehaus.jackson.map.deser.BeanDeserializerFactory
-
Method that will find abstract type mapping for specified type, doing a single
lookup through registered abstract type resolvers; will not do recursive lookups.
- _mapper - Variable in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
Mapper provider was constructed with if any, or that was constructed
due to a call to explicitly configure mapper.
- _mapperConfig - Variable in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
Helper object used for encapsulating configuration aspects
of
ObjectMapper
- _mappings - Variable in class org.codehaus.jackson.map.module.SimpleAbstractTypeResolver
-
Mappings from super types to subtypes
- _mapType - Variable in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
- _mask - Variable in enum org.codehaus.jackson.smile.SmileGenerator.Feature
-
- _match - Variable in class org.codehaus.jackson.format.DataFormatMatcher
-
Factory that produced sufficient match (if any)
- _matchStrength - Variable in class org.codehaus.jackson.format.DataFormatMatcher
-
- _matchToken(String, int) - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
Helper method for checking whether input matches expected token
- _matchToken(String, int) - Method in class org.codehaus.jackson.impl.ReaderBasedParserBase
-
Deprecated.
Helper method for checking whether input matches expected token
- _matchToken(String, int) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _materializer - Variable in class org.codehaus.jackson.mrbean.MrBeanModule
-
Configured materializer instance to register with deserializer factory.
- _maxEntries - Variable in class org.codehaus.jackson.map.util.LRUMap
-
- _maximumNonEscapedChar - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
Value between 128 (0x80) and 65535 (0xFFFF) that indicates highest
Unicode code point that will not need escaping; or 0 to indicate
that all characters can be represented without escaping.
- _maximumNonEscapedChar - Variable in class org.codehaus.jackson.impl.WriterBasedGenerator
-
Value between 128 (0x80) and 65535 (0xFFFF) that indicates highest
Unicode code point that will not need escaping; or 0 to indicate
that all characters can be represented without escaping.
- _maxInputLookahead - Variable in class org.codehaus.jackson.format.DataFormatDetector
-
Maximum number of leading bytes of the input that we can read
to determine data format.
- _mayContainRawBinary - Variable in class org.codehaus.jackson.smile.SmileParser
-
Flag that indicates whether content can legally have raw (unquoted)
binary data.
- _member - Variable in class org.codehaus.jackson.map.BeanProperty.Std
-
Physical entity (field, method or constructor argument) that
is used to access value of property (or in case of constructor
property, just placeholder)
- _member - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Member (field, method) that represents property and allows access
to associated annotations.
- _memberMethods - Variable in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Member methods of interest; for now ones with 0 or 1 arguments
(just optimization, since others won't be used now)
- _method - Variable in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- _methods - Variable in class org.codehaus.jackson.map.introspect.AnnotatedMethodMap
-
- _minimalMatch - Variable in class org.codehaus.jackson.format.DataFormatDetector
-
Strength of minimal match we accept as the answer, unless
better matches are found.
- _minorVersion - Variable in class org.codehaus.jackson.Version
-
- _mixInAnnotations - Variable in class org.codehaus.jackson.map.deser.CustomDeserializerFactory
-
Deprecated.
Mapping that defines how to apply mix-in annotations: key is
the type to received additional annotations, and value is the
type that has annotations to "mix in".
- _mixInAnnotations - Variable in class org.codehaus.jackson.map.MapperConfig
-
Mapping that defines how to apply mix-in annotations: key is
the type to received additional annotations, and value is the
type that has annotations to "mix in".
- _mixInAnnotationsShared - Variable in class org.codehaus.jackson.map.MapperConfig
-
Flag used to detect when a copy if mix-in annotations is
needed: set when current copy is shared, cleared when a
fresh copy is made
- _mixInResolver - Variable in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Object that knows mapping of mix-in classes (ones that contain
annotations to add) with their target classes (ones that
get these additional annotations "mixed in").
- _mixins - Variable in class org.codehaus.jackson.map.module.SimpleModule
-
Lazily-constructed map that contains mix-in definitions, indexed
by target class, value being mix-in to apply.
- _modifiers - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerFactory.ConfigImpl
-
List of modifiers that can change the way
BeanDeserializer
instances
are configured and constructed.
- _modifiers - Variable in class org.codehaus.jackson.map.ser.BeanSerializerFactory.ConfigImpl
-
List of modifiers that can change the way
BeanSerializer
instances
are configured and constructed.
- _modifiers - Variable in class org.codehaus.jackson.map.type.TypeFactory
-
- _name - Variable in class org.codehaus.jackson.map.BeanProperty.Std
-
- _name - Variable in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
External name of logical property; may change with
renaming (by new instance being constructed using
a new name)
- _name - Variable in class org.codehaus.jackson.map.jsontype.NamedType
-
- _name - Variable in class org.codehaus.jackson.map.module.SimpleModule
-
- _name - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Logical name of the property; will be used as the field name
under which value for the property is written.
- _name - Variable in class org.codehaus.jackson.sym.Name
-
- _nameCopied - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Flag set to indicate whether the field name is available
from the name copy buffer or not (in addition to its String
representation being available via read context)
- _nameCopyBuffer - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
- _nameCopyBuffer - Variable in class org.codehaus.jackson.io.IOContext
-
Reference temporary buffer Parser instances need if calling
app decides it wants to access name via 'getTextCharacters' method.
- _narrow(Class<?>) - Method in class org.codehaus.jackson.map.type.ArrayType
-
Handling of narrowing conversions for arrays is trickier: for now,
it is not even allowed.
- _narrow(Class<?>) - Method in class org.codehaus.jackson.map.type.CollectionLikeType
-
- _narrow(Class<?>) - Method in class org.codehaus.jackson.map.type.CollectionType
-
- _narrow(Class<?>) - Method in class org.codehaus.jackson.map.type.MapLikeType
-
- _narrow(Class<?>) - Method in class org.codehaus.jackson.map.type.MapType
-
- _narrow(Class<?>) - Method in class org.codehaus.jackson.map.type.SimpleType
-
- _narrow(Class<?>) - Method in class org.codehaus.jackson.type.JavaType
-
- _nesting - Variable in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
Number of open levels of nesting.
- _next - Variable in class org.codehaus.jackson.util.TokenBuffer.Segment
-
- _nextParser - Variable in class org.codehaus.jackson.util.JsonParserSequence
-
- _nextToken - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Secondary token related to the next token after current one;
used if its type is known.
- _nextToken - Variable in class org.codehaus.jackson.node.TreeTraversingParser
-
Sometimes parser needs to buffer a single look-ahead token; if so,
it'll be stored here.
- _nodeCursor - Variable in class org.codehaus.jackson.node.TreeTraversingParser
-
Traversal context within tree
- _nodeFactory - Variable in class org.codehaus.jackson.map.DeserializationConfig
-
Factory used for constructing
JsonNode
instances.
- _nonStandardCreation - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Flag that is set to mark "non-standard" cases; where either
we use one of non-default creators, or there are unwrapped
values to consider.
- _nonTrivialBaseType - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Base type of the property, if the declared type is "non-trivial";
meaning it is either a structured type (collection, map, array),
or parametrized.
- _notSupported() - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- _nullKeySerializer - Variable in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
Serializer used to (try to) output a null key, due to an entry of
Map
having null key.
- _nullProvider - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
Object used to figure out value to be used when 'null' literal is encountered in JSON.
- _nullValueSerializer - Variable in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
Serializer used to output a null value.
- _numberBigDecimal - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
- _numberBigInt - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
- _numberDouble - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
- _numberInt - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
- _numberLong - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
- _numberNegative - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Flag that indicates whether numeric value has a negative
value.
- _numTypesValid - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Bitfield that indicates which numeric representations
have been calculated for the current type
- _objectBuffer - Variable in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- _objectCodec - Variable in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _objectCodec - Variable in class org.codehaus.jackson.impl.ReaderBasedParser
-
- _objectCodec - Variable in class org.codehaus.jackson.impl.Utf8StreamParser
-
Codec used for data binding when (if) requested; typically full
ObjectMapper
, but that abstract is not part of core
package.
- _objectCodec - Variable in class org.codehaus.jackson.JsonFactory
-
Object that implements conversion functionality between
Java objects and JSON content.
- _objectCodec - Variable in class org.codehaus.jackson.node.TreeTraversingParser
-
- _objectCodec - Variable in class org.codehaus.jackson.smile.SmileParser
-
Codec used for data binding when (if) requested.
- _objectCodec - Variable in class org.codehaus.jackson.util.TokenBuffer
-
Object codec to use for stream-based object
conversion through parser/generator interfaces.
- _objectIndenter - Variable in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
By default, let's use linefeed-adding indenter for separate
object entries.
- _optimalMatch - Variable in class org.codehaus.jackson.format.DataFormatDetector
-
Strength of match we consider to be good enough to be used
without checking any other formats.
- _optimizedStreamFromURL(URL) - Method in class org.codehaus.jackson.JsonFactory
-
Helper methods used for constructing an optimal stream for
parsers to use, when input is to be read from an URL.
- _originalStream - Variable in class org.codehaus.jackson.format.DataFormatMatcher
-
- _out - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
- _outputBuffer - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
- _outputBuffer - Variable in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- _outputBuffer - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
Intermediate buffer in which contents are buffered before
being written using
SmileGenerator._out
.
- _outputDecorator - Variable in class org.codehaus.jackson.JsonFactory
-
Optional helper object that may decorate output object, to do
additional processing on output during content generation.
- _outputEnd - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
End marker of the output buffer; one past the last valid position
within the buffer.
- _outputEnd - Variable in class org.codehaus.jackson.impl.WriterBasedGenerator
-
End marker of the output buffer; one past the last valid position
within the buffer.
- _outputEnd - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
- _outputEscapes - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
Currently active set of output escape code definitions (whether
and how to escape or not) for 7-bit ASCII range (first 128
character codes).
- _outputEscapes - Variable in class org.codehaus.jackson.impl.WriterBasedGenerator
-
Currently active set of output escape code definitions (whether
and how to escape or not) for 7-bit ASCII range (first 128
character codes).
- _outputHead - Variable in class org.codehaus.jackson.impl.WriterBasedGenerator
-
Pointer to the first buffered character to output
- _outputMaxContiguous - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
Maximum number of char
s that we know will always fit
in the output buffer after escaping
- _outputProps - Variable in class org.codehaus.jackson.map.ser.PropertyBuilder
-
- _outputStream - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
Underlying output stream used for writing JSON content.
- _outputSurrogates(int, int) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- _outputTail - Variable in class org.codehaus.jackson.impl.Utf8Generator
-
Pointer to the position right beyond the last character to output
(end marker; may be past the buffer)
- _outputTail - Variable in class org.codehaus.jackson.impl.WriterBasedGenerator
-
Pointer to the position right beyond the last character to output
(end marker; may point to position right beyond the end of the buffer)
- _outputTail - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
- _owner - Variable in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
Member (method, constructor) that this parameter belongs to
- _paramAnnotations - Variable in class org.codehaus.jackson.map.introspect.AnnotatedWithParams
-
Annotations associated with parameters of the annotated
entity (method or constructor parameters)
- _paramTypes - Variable in class org.codehaus.jackson.map.introspect.AnnotatedMethod
-
- _parent - Variable in class org.codehaus.jackson.impl.JsonReadContext
-
- _parent - Variable in class org.codehaus.jackson.impl.JsonWriteContext
-
- _parent - Variable in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Reference to the root symbol table, for child tables, so
that they can merge table information back as necessary.
- _parent - Variable in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Sharing of learnt symbols is done by optional linking of symbol
table instances with their parents.
- _parse(String, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdKeyDeserializer
-
- _parseApostropheFieldName() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- _parseApostropheFieldName() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _parseBoolean(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseBooleanFromNumber(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseBooleanPrimitive(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseByte(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseDate(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseDouble(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseDouble(String) - Method in class org.codehaus.jackson.map.deser.std.StdKeyDeserializer
-
- _parseDoublePrimitive(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseFieldName(int) - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- _parseFieldName(int) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _parseFloat(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseFloatPrimitive(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseInt(String) - Method in class org.codehaus.jackson.map.deser.std.StdKeyDeserializer
-
- _parseInteger(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseIntPrimitive(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseLong(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseLong(String) - Method in class org.codehaus.jackson.map.deser.std.StdKeyDeserializer
-
- _parseLongPrimitive(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseNumericValue(int) - Method in class org.codehaus.jackson.impl.JsonParserBase
-
Method that will parse actual numeric value out of a syntactically
valid number value.
- _parseNumericValue(int) - Method in class org.codehaus.jackson.smile.SmileParser
-
- _parser - Variable in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
Currently active parser used for deserialization.
- _parser - Variable in class org.codehaus.jackson.map.MappingIterator
-
- _parser - Variable in class org.codehaus.jackson.map.type.TypeFactory
-
- _parserFeatures - Variable in class org.codehaus.jackson.JsonFactory
-
Currently enabled parser features.
- _parsers - Variable in class org.codehaus.jackson.util.JsonParserSequence
-
Parsers other than the first one (which is initially assigned
as delegate)
- _parseShort(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parseShortPrimitive(JsonParser, DeserializationContext) - Method in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
- _parsingContext - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Information about parser context, context in which
the next token is to be parsed (root, array, object).
- _parsingContext - Variable in class org.codehaus.jackson.util.TokenBuffer.Parser
-
Information about parser context, context in which
the next token is to be parsed (root, array, object).
- _patchLevel - Variable in class org.codehaus.jackson.Version
-
- _path - Variable in exception org.codehaus.jackson.map.JsonMappingException
-
Path through which problem that triggering throwing of
this exception was reached.
- _placeholders - Variable in class org.codehaus.jackson.map.type.TypeBindings
-
Also: we may temporarily want to mark certain named types
as resolved (but without exact type); if so, we'll just store
names here.
- _prefix - Variable in class org.codehaus.jackson.map.util.JSONWrappedObject
-
Literal String to output before serialized value.
- _prettyPrinter - Variable in class org.codehaus.jackson.map.ObjectWriter
-
To allow for dynamic enabling/disabling of pretty printing,
pretty printer can be optionally configured for writer
as well
- _primary - Variable in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- _primaryMixIn - Variable in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Primary mix-in class; one to use for the annotated class
itself.
- _problem(TypeParser.MyTokenizer, String) - Method in class org.codehaus.jackson.map.type.TypeParser
-
- _problemHandlers - Variable in class org.codehaus.jackson.map.DeserializationConfig
-
Linked list that contains all registered problem handlers.
- _properties - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerBuilder
-
Properties to deserialize collected so far.
- _properties - Variable in class org.codehaus.jackson.map.deser.impl.PropertyBasedCreator
-
Map that contains property objects for either constructor or factory
method (whichever one is null: one property for each
parameter for that one), keyed by logical property name
- _properties - Variable in class org.codehaus.jackson.map.deser.impl.UnwrappedPropertyHandler
-
- _properties - Variable in class org.codehaus.jackson.map.introspect.BasicBeanDescription
-
Properties collected for the POJO.
- _properties - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Set of logical property information collected so far
- _properties - Variable in class org.codehaus.jackson.map.ser.BeanSerializerBuilder
-
Bean properties, in order of serialization
- _propertiesToExclude - Variable in class org.codehaus.jackson.map.ser.impl.SimpleBeanPropertyFilter.SerializeExceptFilter
-
Set of property names to filter out.
- _propertiesToInclude - Variable in class org.codehaus.jackson.map.ser.impl.SimpleBeanPropertyFilter.FilterExceptFilter
-
Set of property names to serialize.
- _propertiesWithInjectables - Variable in class org.codehaus.jackson.map.deser.impl.PropertyBasedCreator
-
Array that contains properties that expect value to inject, if any;
null if no injectable values are expected.
- _property - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Property that contains value to be deserialized using
deserializer; mostly needed to find contextual annotations
for subtypes.
- _property - Variable in class org.codehaus.jackson.map.deser.SettableAnyProperty
-
Method used for setting "any" properties, along with annotation
information.
- _property - Variable in class org.codehaus.jackson.map.deser.std.AtomicReferenceDeserializer
-
- _property(String) - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- _property - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeDeserializerBase
-
- _property - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
-
- _property - Variable in class org.codehaus.jackson.map.ser.std.AsArraySerializerBase
-
Collection-valued property being serialized with this instance
- _property - Variable in class org.codehaus.jackson.map.ser.std.EnumMapSerializer
-
Property being serialized with this instance
- _property - Variable in class org.codehaus.jackson.map.ser.std.JsonValueSerializer
-
- _property - Variable in class org.codehaus.jackson.map.ser.std.MapSerializer
-
Map-valued property being serialized with this instance
- _property - Variable in class org.codehaus.jackson.map.ser.std.StaticListSerializerBase
-
Property that contains String List to serialize, if known.
- _property - Variable in class org.codehaus.jackson.map.ser.std.StdArraySerializers.ArraySerializerBase
-
Array-valued property being serialized with this instance
- _propertyBasedArgs - Variable in class org.codehaus.jackson.map.deser.impl.CreatorCollector
-
- _propertyBasedCreator - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
If the bean needs to be instantiated using constructor
or factory method
that takes one or more named properties as argument(s),
this creator is used for instantiation.
- _propertyBasedCreator - Variable in class org.codehaus.jackson.map.deser.impl.CreatorCollector
-
- _propertyBasedCreator - Variable in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
If the Map is to be instantiated using non-default constructor
or factory method
that takes one or more named properties as argument(s),
this creator is used for instantiation.
- _propertyCount - Variable in class org.codehaus.jackson.map.deser.impl.PropertyBasedCreator
-
- _propertyFilterId - Variable in class org.codehaus.jackson.map.ser.std.BeanSerializerBase
-
Id of the bean property filter to use, if any; null if none.
- _propertyIndex - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
Index of property (within all property of a bean); assigned
when all properties have been collected.
- _propertyNamingStrategy - Variable in class org.codehaus.jackson.map.MapperConfig.Base
-
Custom property naming strategy in use, if any.
- _propName - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
Logical name of the property (often but not always derived
from the setter method name)
- _props - Variable in class org.codehaus.jackson.map.ser.std.BeanSerializerBase
-
Writers used for outputting actual property values
- _provider - Variable in class org.codehaus.jackson.map.ObjectReader
-
- _provider - Variable in class org.codehaus.jackson.map.ObjectWriter
-
- _providers - Variable in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
Injectable context object used to locate configured
instance of
ObjectMapper
to use for actual
serialization.
- _ptr - Variable in class org.codehaus.jackson.format.InputAccessor.Std
-
- _quad1 - Variable in class org.codehaus.jackson.smile.SmileParser
-
Quads used for hash calculation
- _quad2 - Variable in class org.codehaus.jackson.smile.SmileParser
-
Quads used for hash calculation
- _quadBuffer - Variable in class org.codehaus.jackson.impl.Utf8StreamParser
-
Temporary buffer used for name parsing.
- _quadBuffer - Variable in class org.codehaus.jackson.smile.SmileParser
-
Temporary buffer used for name parsing.
- _quoteBuffer - Variable in class org.codehaus.jackson.io.JsonStringEncoder
-
Temporary buffer used for composing quote/escape sequences
- _quotedChars - Variable in class org.codehaus.jackson.io.SerializedString
-
- _quotedUTF8Ref - Variable in class org.codehaus.jackson.io.SerializedString
-
- _rawClass - Variable in class org.codehaus.jackson.map.type.HierarchicType
-
- _readAndBind(JsonParser, DeserializationContext, Map<Object, Object>) - Method in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
- _reader - Variable in class org.codehaus.jackson.impl.ReaderBasedParser
-
Reader that can be used for reading more content, if one
buffer from input source, but in some cases pre-loaded buffer
is handed to the parser.
- _reader - Variable in class org.codehaus.jackson.impl.ReaderBasedParserBase
-
Deprecated.
Reader that can be used for reading more content, if one
buffer from input source, but in some cases pre-loaded buffer
is handed to the parser.
- _readIOBuffer - Variable in class org.codehaus.jackson.io.IOContext
-
Reference to the allocated I/O buffer for low-level input reading,
if any allocated.
- _readMapAndClose(JsonParser, JavaType) - Method in class org.codehaus.jackson.map.ObjectMapper
-
- _readValue(DeserializationConfig, JsonParser, JavaType) - Method in class org.codehaus.jackson.map.ObjectMapper
-
Actual implementation of value reading+binding operation.
- _recyclerRef - Static variable in class org.codehaus.jackson.JsonFactory
-
This
ThreadLocal
contains a
SoftReference
to a
BufferRecycler
used to provide a low-cost
buffer recycling between reader and writer instances.
- _referencedType - Variable in class org.codehaus.jackson.map.deser.std.AtomicReferenceDeserializer
-
Type of value that we reference
- _referenceName - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty.ManagedReferenceProperty
-
- _referringClass - Variable in exception org.codehaus.jackson.map.exc.UnrecognizedPropertyException
-
Class that does not contain mapping for the unrecognized property.
- _registeredSubtypes - Variable in class org.codehaus.jackson.map.jsontype.impl.StdSubtypeResolver
-
- _releaseBuffers() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _releaseBuffers() - Method in class org.codehaus.jackson.impl.JsonParserBase
-
Method called to release internal buffers owned by the base
reader.
- _releaseBuffers() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
Method called to release internal buffers owned by the base
reader.
- _releaseBuffers() - Method in class org.codehaus.jackson.impl.ReaderBasedParserBase
-
Deprecated.
Method called to release internal buffers owned by the base
reader.
- _releaseBuffers() - Method in class org.codehaus.jackson.impl.StreamBasedParserBase
-
Deprecated.
- _releaseBuffers() - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- _releaseBuffers() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
Method called to release internal buffers owned by the base
reader.
- _releaseBuffers() - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- _releaseBuffers() - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- _releaseBuffers() - Method in class org.codehaus.jackson.smile.SmileParser
-
Method called to release internal buffers owned by the base
reader.
- _removeUnwantedProperties() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Method called to get rid of candidate properties that are marked
as ignored, or that are not visible.
- _renameProperties() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- _renameUsing(PropertyNamingStrategy) - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- _reportBase64EOF() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _reportBase64EOF() - Method in class org.codehaus.jackson.node.TextNode
-
- _reportError(String) - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _reportError(String) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _reportIncompatibleRootType(Object, JavaType) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- _reportInvalidBase64(Base64Variant, char, int, String) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _reportInvalidBase64(Base64Variant, char, int) - Method in class org.codehaus.jackson.node.TextNode
-
- _reportInvalidBase64(Base64Variant, char, int, String) - Method in class org.codehaus.jackson.node.TextNode
-
- _reportInvalidChar(int) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _reportInvalidChar(int) - Method in class org.codehaus.jackson.smile.SmileParser
-
- _reportInvalidEOF() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _reportInvalidEOF(String) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _reportInvalidEOFInValue() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _reportInvalidInitial(int) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _reportInvalidInitial(int) - Method in class org.codehaus.jackson.smile.SmileParser
-
- _reportInvalidOther(int) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _reportInvalidOther(int, int) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _reportInvalidOther(int) - Method in class org.codehaus.jackson.smile.SmileParser
-
- _reportInvalidOther(int, int) - Method in class org.codehaus.jackson.smile.SmileParser
-
- _reportInvalidSharedName(int) - Method in class org.codehaus.jackson.smile.SmileParser
-
- _reportInvalidSharedStringValue(int) - Method in class org.codehaus.jackson.smile.SmileParser
-
- _reportInvalidToken(String, String) - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- _reportInvalidToken(String, String) - Method in class org.codehaus.jackson.impl.ReaderBasedParserBase
-
Deprecated.
- _reportInvalidToken(String, String) - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _reportMismatchedEndMarker(int, char) - Method in class org.codehaus.jackson.impl.JsonParserBase
-
- _reportSelfReference(Object) - Method in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
- _reportUnexpectedChar(int, String) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _reportUnsupportedOperation() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _reportUnsupportedOperation() - Method in class org.codehaus.jackson.util.TokenBuffer
-
- _reset() - Method in class org.codehaus.jackson.map.util.ObjectBuffer
-
- _reset() - Method in class org.codehaus.jackson.map.util.PrimitiveArrayBuilder
-
- _resolve() - Method in class org.codehaus.jackson.map.type.TypeBindings
-
- _resolveBindings(Type) - Method in class org.codehaus.jackson.map.type.TypeBindings
-
- _resolveDeserializer(DeserializationConfig, ResolvableDeserializer) - Method in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- _resolveInnerClassValuedProperty(DeserializationConfig, SettableBeanProperty) - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Helper method that will handle gruesome details of dealing with properties
that have non-static inner class as value...
- _resolveIntrospector(Annotations) - Method in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
- _resolveIntrospectors(Annotations[]) - Method in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
- _resolveManagedReferenceProperty(DeserializationConfig, SettableBeanProperty) - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Helper method called to see if given property is part of 'managed' property
pair (managed + back reference), and if so, handle resolution details.
- _resolver - Variable in class org.codehaus.jackson.map.deser.std.EnumDeserializer
-
- _resolveUnwrappedProperty(DeserializationConfig, SettableBeanProperty) - Method in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Helper method called to see if given property might be so-called unwrapped
property: these require special handling.
- _resolveVariableViaSubTypes(HierarchicType, String, TypeBindings) - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- _rootByteSymbols - Variable in class org.codehaus.jackson.JsonFactory
-
Alternative to the basic symbol table, some stream-based
parsers use different name canonicalization method.
- _rootCharSymbols - Variable in class org.codehaus.jackson.JsonFactory
-
Each factory comes equipped with a shared root symbol table.
- _rootDeserializers - Variable in class org.codehaus.jackson.map.ObjectMapper
-
We will use a separate main-level Map for keeping track
of root-level deserializers.
- _rootDeserializers - Variable in class org.codehaus.jackson.map.ObjectReader
-
Root-level cached deserializers
- _rootNames - Variable in class org.codehaus.jackson.map.deser.StdDeserializerProvider
-
- _rootNames - Variable in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
Helper object for keeping track of introspected root names
- _rootNames - Variable in class org.codehaus.jackson.map.util.RootNameLookup
-
For efficient operation, let's try to minimize number of times we
need to introspect root element name to use.
- _rootType - Variable in class org.codehaus.jackson.map.ObjectWriter
-
Specified root serialization type to use; can be same
as runtime type, but usually one of its super types
- _rootValueSeparator - Variable in class org.codehaus.jackson.util.MinimalPrettyPrinter
-
- _schema - Variable in class org.codehaus.jackson.map.ObjectReader
-
When using data format that uses a schema, schema is passed
to parser.
- _schema - Variable in class org.codehaus.jackson.map.ObjectWriter
-
When using data format that uses a schema, schema is passed
to generator.
- _secondary - Variable in class org.codehaus.jackson.map.AnnotationIntrospector.Pair
-
- _seenNameCount - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
- _seenNameCount - Variable in class org.codehaus.jackson.smile.SmileParser
-
- _seenNames - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
Raw data structure used for checking whether field name to
write can be output using back reference or not.
- _seenNames - Variable in class org.codehaus.jackson.smile.SmileParser
-
Array of recently seen field names, which may be back referenced
by later fields.
- _seenNamesBuffer - Variable in class org.codehaus.jackson.smile.SmileBufferRecycler
-
- _seenStringValueCount - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
- _seenStringValueCount - Variable in class org.codehaus.jackson.smile.SmileParser
-
- _seenStringValues - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
Raw data structure used for checking whether String value to
write can be output using back reference or not.
- _seenStringValues - Variable in class org.codehaus.jackson.smile.SmileParser
-
Array of recently seen field names, which may be back referenced
by later fields
Defaults set to disable handling if no header found.
- _seenStringValuesBuffer - Variable in class org.codehaus.jackson.smile.SmileBufferRecycler
-
- _segment - Variable in class org.codehaus.jackson.util.TokenBuffer.Parser
-
Currently active segment
- _segmentPtr - Variable in class org.codehaus.jackson.util.TokenBuffer.Parser
-
Pointer to current token within current segment
- _serializationConfig - Variable in class org.codehaus.jackson.map.ObjectMapper
-
Configuration object that defines basic global
settings for the serialization process
- _serializationInclusion - Variable in class org.codehaus.jackson.map.SerializationConfig
-
Which Bean/Map properties are to be included in serialization?
Default settings is to include all regardless of value; can be
changed to only include non-null properties, or properties
with non-default values.
- _serializationType - Variable in class org.codehaus.jackson.map.util.JSONPObject
-
Optional static type to use for serialization; if null, runtime
type is used.
- _serializationType - Variable in class org.codehaus.jackson.map.util.JSONWrappedObject
-
Optional static type to use for serialization; if null, runtime
type is used.
- _serializationView - Variable in class org.codehaus.jackson.map.SerializationConfig
-
View to use for filtering out properties to serialize.
- _serializationView - Variable in class org.codehaus.jackson.map.SerializerProvider
-
View used for currently active serialization
- _serializer - Variable in class org.codehaus.jackson.map.ser.AnyGetterWriter
-
- _serializer - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Serializer to use for writing out the value: null if it can not
be known statically; non-null if it can.
- _serializer - Variable in class org.codehaus.jackson.map.ser.std.IndexedStringListSerializer
-
- _serializer - Variable in class org.codehaus.jackson.map.ser.std.StringCollectionSerializer
-
- _serializerCache - Variable in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
Cache for doing type-to-value-serializer lookups.
- _serializerFactory - Variable in class org.codehaus.jackson.map.ObjectMapper
-
Serializer factory used for constructing serializers.
- _serializerFactory - Variable in class org.codehaus.jackson.map.ObjectWriter
-
- _serializerFactory - Variable in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
- _serializerProvider - Variable in class org.codehaus.jackson.map.ObjectMapper
-
Object that manages access to serializers used for serialization,
including caching.
- _serializers - Variable in class org.codehaus.jackson.map.module.SimpleModule
-
- _serializeValue(JsonGenerator, Object) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
Method called on the actual non-blueprint provider instance object,
to kick off the serialization.
- _serializeValue(JsonGenerator, Object, JavaType) - Method in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
Method called on the actual non-blueprint provider instance object,
to kick off the serialization, when root type is explicitly
specified and not determined from value.
- _set(int, JsonNode) - Method in class org.codehaus.jackson.node.ArrayNode
-
- _setAnnotations(ObjectMapper, Annotations[]) - Method in class org.codehaus.jackson.jaxrs.MapperConfigurator
-
- _setter - Variable in class org.codehaus.jackson.map.deser.SettableAnyProperty
-
Physical JDK object used for assigning properties.
- _setter - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty.MethodProperty
-
Setter method for modifying property value; used for
"regular" method-accessible properties.
- _setterMinLevel - Variable in class org.codehaus.jackson.map.introspect.VisibilityChecker.Std
-
- _setters - Variable in class org.codehaus.jackson.map.introspect.POJOPropertyBuilder
-
- _size - Variable in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Current size (number of entries); needed to know if and when
rehash.
- _sizeThreshold - Variable in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Limit that indicates maximum size this instance can hold before
it needs to be expanded and rehashed.
- _skip7BitBinary() - Method in class org.codehaus.jackson.smile.SmileParser
-
Helper method for skipping length-prefixed binary data
section
- _skipBytes(int) - Method in class org.codehaus.jackson.smile.SmileParser
-
- _skipCR() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
We actually need to check the character value here
(to see if we have \n following \r).
- _skipCR() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
We actually need to check the character value here
(to see if we have \n following \r).
- _skipIncomplete() - Method in class org.codehaus.jackson.smile.SmileParser
-
Method called to skip remainders of an incomplete token, when
contents themselves will not be needed any more
- _skipLF() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
- _skipLF() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
- _skipString() - Method in class org.codehaus.jackson.impl.ReaderBasedParser
-
Method called to skim through rest of unparsed String value,
if it is not needed.
- _skipString() - Method in class org.codehaus.jackson.impl.Utf8StreamParser
-
Method called to skim through rest of unparsed String value,
if it is not needed.
- _smileBufferRecycler - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
Helper object used for low-level recycling of Smile-generator
specific buffers.
- _smileBufferRecycler() - Static method in class org.codehaus.jackson.smile.SmileGenerator
-
- _smileBufferRecycler - Variable in class org.codehaus.jackson.smile.SmileParser
-
Helper object used for low-level recycling of Smile-generator
specific buffers.
- _smileBufferRecycler() - Static method in class org.codehaus.jackson.smile.SmileParser
-
- _smileFeatures - Variable in class org.codehaus.jackson.smile.SmileGenerator
-
- _smileGeneratorFeatures - Variable in class org.codehaus.jackson.smile.SmileFactory
-
- _smileParserFeatures - Variable in class org.codehaus.jackson.smile.SmileFactory
-
- _smileRecyclerRef - Static variable in class org.codehaus.jackson.smile.SmileGenerator
-
This
ThreadLocal
contains a
SoftReference
to a buffer recycler used to provide a low-cost
buffer recycling for Smile-specific buffers.
- _smileRecyclerRef - Static variable in class org.codehaus.jackson.smile.SmileParser
-
ThreadLocal
contains a
SoftReference
to a buffer recycler used to provide a low-cost
buffer recycling for Smile-specific buffers.
- _snapshotInfo - Variable in class org.codehaus.jackson.Version
-
Additional information for snapshot versions; null for non-snapshot
(release) versions.
- _sortProperties() - Method in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- _sortPropertiesAlphabetically - Variable in class org.codehaus.jackson.map.DeserializationConfig
-
Feature flag from
SerializationConfig
which is needed to
know if serializer will by default sort properties in
alphabetic order.
- _sourceRef - Variable in class org.codehaus.jackson.io.IOContext
-
Reference to the source object, which can be used for displaying
location information
- _spacesInObjectEntries - Variable in class org.codehaus.jackson.util.DefaultPrettyPrinter
-
By default we will add spaces around colons used to
separate object fields and values.
- _startContainer - Variable in class org.codehaus.jackson.node.TreeTraversingParser
-
Flag needed to handle recursion into contents of child
Array/Object nodes.
- _staticTyping - Variable in class org.codehaus.jackson.map.ser.std.AsArraySerializerBase
-
- _staticTyping - Variable in class org.codehaus.jackson.map.ser.std.EnumMapSerializer
-
- _staticTyping - Variable in class org.codehaus.jackson.map.ser.std.ObjectArraySerializer
-
Whether we are using static typing (using declared types, ignoring
runtime type) or not for elements.
- _stringCreator - Variable in class org.codehaus.jackson.map.deser.impl.CreatorCollector
-
- _subDeserializers - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Lazily constructed map used to contain deserializers needed
for polymorphic subtypes.
- _subType - Variable in class org.codehaus.jackson.map.type.HierarchicType
-
- _subtypeResolver - Variable in class org.codehaus.jackson.map.MapperConfig
-
Registered concrete subtypes that can be used instead of (or
in addition to) ones declared using annotations.
- _subtypeResolver - Variable in class org.codehaus.jackson.map.ObjectMapper
-
Registered concrete subtypes that can be used instead of (or
in addition to) ones declared using annotations.
- _suffix - Variable in class org.codehaus.jackson.map.util.JSONWrappedObject
-
Literal String to output after serialized value.
- _superType - Variable in class org.codehaus.jackson.map.type.HierarchicType
-
- _superTypes - Variable in class org.codehaus.jackson.map.introspect.AnnotatedClass
-
Ordered set of super classes and interfaces of the
class itself: included in order of precedence
- _suppressableValue - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Value that is considered default value of the property; used for
default-value-suppression if enabled.
- _suppressNulls - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
Flag to indicate that null values for this property are not
to be written out.
- _surrogate - Variable in class org.codehaus.jackson.io.UTF32Reader
-
Although input is fine with full Unicode set, Java still uses
16-bit chars, so we may have to split high-order chars into
surrogate pairs.
- _symbols - Variable in class org.codehaus.jackson.impl.ReaderBasedParser
-
- _symbols - Variable in class org.codehaus.jackson.impl.Utf8StreamParser
-
Symbol table that contains field names encountered so far
- _symbols - Variable in class org.codehaus.jackson.smile.SmileParser
-
Symbol table that contains field names encountered so far
- _symbols - Variable in class org.codehaus.jackson.sym.CharsToNameCanonicalizer
-
Primary matching symbols; it's expected most match occur from
here.
- _tableInfo - Variable in class org.codehaus.jackson.sym.BytesToNameCanonicalizer
-
Member that is only used by the root table instance: root
passes immutable state into child instances, and children
may return new state if they add entries to the table.
- _textBuffer - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Buffer that contains contents of String values, including
field names if necessary (name split across boundary,
contains escape sequence, or access needed to char array)
- _textBuffer - Variable in class org.codehaus.jackson.io.JsonStringEncoder
-
Lazily constructed text buffer used to produce JSON encoded Strings
as characters (without UTF-8 encoding)
- _threadEncoder - Static variable in class org.codehaus.jackson.io.JsonStringEncoder
-
This
ThreadLocal
contains a
SoftReference
to a
BufferRecycler
used to provide a low-cost
buffer recycling between reader and writer instances.
- _throwAsIOE(Exception, String, Object) - Method in class org.codehaus.jackson.map.deser.SettableAnyProperty
-
- _throwAsIOE(Exception, Object) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
Method that takes in exception of any type, and casts or wraps it
to an IOException or its subclass.
- _throwAsIOE(Exception) - Method in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
- _throwInternal() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _throwInternal() - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _throwInvalidSpace(int) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _throwUnquotedSpace(int, String) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
Method called to report a problem with unquoted control character.
- _throwWrapped(Exception, String, Object) - Method in class org.codehaus.jackson.map.ser.PropertyBuilder
-
- _tokenCBuffer - Variable in class org.codehaus.jackson.io.IOContext
-
Reference to the buffer allocated for tokenization purposes,
in which character input is read, and from which it can be
further returned.
- _tokenIncomplete - Variable in class org.codehaus.jackson.impl.ReaderBasedParser
-
Flag that indicates that the current token has not yet
been fully processed, and needs to be finished for
some access (or skipped to obtain the next token)
- _tokenIncomplete - Variable in class org.codehaus.jackson.impl.Utf8StreamParser
-
Flag that indicates that the current token has not yet
been fully processed, and needs to be finished for
some access (or skipped to obtain the next token)
- _tokenIncomplete - Variable in class org.codehaus.jackson.smile.SmileParser
-
Flag that indicates that the current token has not yet
been fully processed, and needs to be finished for
some access (or skipped to obtain the next token)
- _tokenInputCol - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Column on input row that current token starts; 0-based (although
in the end it'll be converted to 1-based)
- _tokenInputRow - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Input row on which current token starts, 1-based
- _tokenInputTotal - Variable in class org.codehaus.jackson.impl.JsonParserBase
-
Total number of bytes/characters read before start of current token.
- _tokens - Variable in class org.codehaus.jackson.util.TokenBuffer.Segment
-
- _tokenTypes - Variable in class org.codehaus.jackson.util.TokenBuffer.Segment
-
Bit field used to store types of buffered tokens; 4 bits per token.
- _transitiveClassMappings - Variable in class org.codehaus.jackson.map.ser.CustomSerializerFactory
-
And then class-based mappings that are used both for exact and
sub-class matches.
- _type - Variable in class org.codehaus.jackson.JsonStreamContext
-
- _type - Variable in class org.codehaus.jackson.map.BeanDescription
-
Bean type information, including raw class and possible
* generics information
- _type - Variable in class org.codehaus.jackson.map.BeanProperty.Std
-
- _type - Variable in class org.codehaus.jackson.map.deser.SettableAnyProperty
-
- _type - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
Base type for property; may be a supertype of actual value.
- _type - Variable in class org.codehaus.jackson.map.introspect.AnnotatedParameter
-
JDK type of the parameter, possibly contains generic type information
- _type - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
Type of POJO for which properties are being collected.
- _type - Variable in class org.codehaus.jackson.map.MappingIterator
-
- _type - Variable in class org.codehaus.jackson.map.ser.impl.SerializerCache.TypeKey
-
- _typeByte - Variable in class org.codehaus.jackson.smile.SmileParser
-
Type byte of the current token
- _typeFactory - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeIdResolverBase
-
- _typeFactory - Variable in class org.codehaus.jackson.map.MapperConfig.Base
-
Specific factory used for creating
JavaType
instances;
needed to allow modules to add more custom type handling
(mostly to support types of non-Java JVM languages)
- _typeFactory - Variable in class org.codehaus.jackson.map.ObjectMapper
-
Specific factory used for creating
JavaType
instances;
needed to allow modules to add more custom type handling
(mostly to support types of non-Java JVM languages)
- _typeFactory - Variable in class org.codehaus.jackson.map.type.TypeBindings
-
Factory to use for constructing resolved related types.
- _typeFactory - Variable in class org.codehaus.jackson.mrbean.BeanBuilder
-
- _typeHandler - Variable in class org.codehaus.jackson.type.JavaType
-
Optional handler that can be attached to indicate how to handle
additional type metadata associated with this type.
- _typeNames - Variable in class org.codehaus.jackson.map.type.SimpleType
-
- _typeParameters - Variable in class org.codehaus.jackson.map.type.SimpleType
-
Generic type arguments for this type.
- _typeProperty - Variable in class org.codehaus.jackson.map.jsontype.impl.StdTypeResolverBuilder
-
- _typePropertyName - Variable in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeDeserializer
-
- _typePropertyName - Variable in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- _typePropertyName - Variable in class org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeDeserializer
-
- _typePropertyName - Variable in class org.codehaus.jackson.map.jsontype.impl.AsPropertyTypeSerializer
-
- _typeResolverBuilder - Variable in class org.codehaus.jackson.map.MapperConfig.Base
-
Type information handler used for "untyped" values (ones declared
to have type Object.class
)
- _typeResolverFromXmlElements(AnnotatedMember) - Method in class org.codehaus.jackson.xc.JaxbAnnotationIntrospector
-
- _typeSerializer - Variable in class org.codehaus.jackson.map.ser.BeanPropertyWriter
-
If property being serialized needs type information to be
included this is the type serializer to use.
- _typeToId - Variable in class org.codehaus.jackson.map.jsontype.impl.TypeNameIdResolver
-
Mappings from class name to type id, used for serialization
- _unknownType() - Method in class org.codehaus.jackson.map.type.TypeFactory
-
- _unknownTypeSerializer - Variable in class org.codehaus.jackson.map.ser.StdSerializerProvider
-
Serializer that gets called for values of types for which no
serializers can be constructed.
- _unquotedUTF8Ref - Variable in class org.codehaus.jackson.io.SerializedString
-
- _unreadableClasses - Static variable in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
These are classes that we never use for reading
(never try to deserialize instances of these types).
- _unrecognizedPropertyName - Variable in exception org.codehaus.jackson.map.exc.UnrecognizedPropertyException
-
Note: redundant information since it is also included in the
reference path.
- _unsupportedMethods - Variable in class org.codehaus.jackson.mrbean.BeanBuilder
-
- _untouchables - Static variable in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
Looks like we need to worry about accidental
data binding for types we shouldn't be handling.
- _untyped - Variable in class org.codehaus.jackson.map.deser.std.ObjectArrayDeserializer
-
Flag that indicates whether the component type is Object or not.
- _unwrapAndDeserialize(JsonParser, JavaType, DeserializationContext, JsonDeserializer<Object>) - Method in class org.codehaus.jackson.map.ObjectMapper
-
- _unwrapAndDeserialize(JsonParser, DeserializationContext, JavaType, JsonDeserializer<Object>) - Method in class org.codehaus.jackson.map.ObjectReader
-
- _unwrappedPropertyHandler - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
If one of properties has "unwrapped" value, we need separate
helper object
- _unwrapRoot - Variable in class org.codehaus.jackson.map.ObjectReader
-
Flag that indicates whether root values are expected to be unwrapped
or not
- _unwritableClasses - Static variable in class org.codehaus.jackson.jaxrs.JacksonJsonProvider
-
These are classes that we never use for writing
(never try to serialize instances of these types).
- _updatedValue - Variable in class org.codehaus.jackson.map.MappingIterator
-
If not null, "value to update" instead of creating a new instance
for each call.
- _value - Variable in class org.codehaus.jackson.io.SerializedString
-
- _value - Variable in class org.codehaus.jackson.map.util.JSONPObject
-
Value to be serialized as JSONP padded; can be null.
- _value - Variable in class org.codehaus.jackson.map.util.JSONWrappedObject
-
Value to be serialized as JSONP padded; can be null.
- _value - Variable in class org.codehaus.jackson.node.BigIntegerNode
-
- _value - Variable in class org.codehaus.jackson.node.DecimalNode
-
- _value - Variable in class org.codehaus.jackson.node.DoubleNode
-
- _value - Variable in class org.codehaus.jackson.node.POJONode
-
- _valueClass - Variable in class org.codehaus.jackson.map.deser.std.StdDeserializer
-
Type of values this deserializer handles: sometimes
exact types, other time most specific supertype of
types deserializer handles (which may be as generic
as
Object
in some case)
- _valueDesc() - Method in class org.codehaus.jackson.map.deser.StdDeserializationContext
-
- _valueDeserializer - Variable in class org.codehaus.jackson.map.deser.SettableAnyProperty
-
- _valueDeserializer - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
Deserializer used for handling property value.
- _valueDeserializer - Variable in class org.codehaus.jackson.map.deser.std.AtomicReferenceDeserializer
-
- _valueDeserializer - Variable in class org.codehaus.jackson.map.deser.std.CollectionDeserializer
-
Value deserializer.
- _valueDeserializer - Variable in class org.codehaus.jackson.map.deser.std.EnumMapDeserializer
-
- _valueDeserializer - Variable in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
Value deserializer.
- _valueDeserializer - Variable in class org.codehaus.jackson.map.deser.std.StringCollectionDeserializer
-
Value deserializer; needed even if it is the standard String
deserializer
- _valueHandler - Variable in class org.codehaus.jackson.type.JavaType
-
Optional handler (codec) that can be attached to indicate
what to use for handling (serializing, deserializing) values of
this specific type.
- _valueId - Variable in class org.codehaus.jackson.map.deser.impl.ValueInjector
-
Identifier used for looking up value to inject
- _valueInstantiator - Variable in class org.codehaus.jackson.map.deser.BeanDeserializer
-
Object that handles details of constructing initial
bean value (to which bind data to), unless instance
is passed (via updateValue())
- _valueInstantiator - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerBuilder
-
Object that will handle value instantiation for the bean type.
- _valueInstantiator - Variable in class org.codehaus.jackson.map.deser.impl.PropertyBasedCreator
-
- _valueInstantiator - Variable in class org.codehaus.jackson.map.deser.std.CollectionDeserializer
-
- _valueInstantiator - Variable in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
- _valueInstantiator - Variable in class org.codehaus.jackson.map.deser.std.StringCollectionDeserializer
-
- _valueInstantiators - Variable in class org.codehaus.jackson.map.deser.BeanDeserializerFactory.ConfigImpl
-
List of objects that know how to create instances of POJO types;
possibly using custom construction (non-annoted constructors; factory
methods external to value type etc).
- _valueInstantiators - Variable in class org.codehaus.jackson.map.module.SimpleModule
-
Lazily-constructed resolver used for storing mappings from
abstract classes to more specific implementing classes
(which may be abstract or concrete)
- _values - Variable in class org.codehaus.jackson.map.InjectableValues.Std
-
- _values - Variable in class org.codehaus.jackson.map.ser.std.EnumSerializer
-
This map contains pre-resolved values (since there are ways
to customize actual String constants to use) to use as
serializations.
- _valueSerializer - Variable in class org.codehaus.jackson.map.ser.std.EnumMapSerializer
-
Value serializer to use, if it can be statically determined
- _valueSerializer - Variable in class org.codehaus.jackson.map.ser.std.JsonValueSerializer
-
- _valueSerializer - Variable in class org.codehaus.jackson.map.ser.std.MapSerializer
-
Value serializer to use, if it can be statically determined
- _valueToUpdate - Variable in class org.codehaus.jackson.map.ObjectReader
-
Instance to update with data binding; if any.
- _valueType - Variable in class org.codehaus.jackson.map.ObjectReader
-
Declared type of value to instantiate during deserialization.
- _valueType - Variable in class org.codehaus.jackson.map.ser.std.EnumMapSerializer
-
- _valueType - Variable in class org.codehaus.jackson.map.ser.std.MapSerializer
-
Declared type of contained values
- _valueType - Variable in class org.codehaus.jackson.map.type.MapLikeType
-
Type of values of Map.
- _valueType - Variable in class org.codehaus.jackson.xc.XmlAdapterJsonDeserializer
-
- _valueTypeDesc - Variable in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
Type of values that are instantiated; used
for error reporting purposes.
- _valueTypeDeserializer - Variable in class org.codehaus.jackson.map.deser.SettableBeanProperty
-
If value will contain type information (to support
polymorphic handling), this is the type deserializer
used to handle type resolution.
- _valueTypeDeserializer - Variable in class org.codehaus.jackson.map.deser.std.CollectionDeserializer
-
If element instances have polymorphic type information, this
is the type deserializer that can handle it
- _valueTypeDeserializer - Variable in class org.codehaus.jackson.map.deser.std.MapDeserializer
-
If value instances have polymorphic type information, this
is the type deserializer that can handle it
- _valueTypeIsStatic - Variable in class org.codehaus.jackson.map.ser.std.MapSerializer
-
Whether static types should be used for serialization of values
or not (if not, dynamic runtime type is used)
- _valueTypeSerializer - Variable in class org.codehaus.jackson.map.ser.std.AsArraySerializerBase
-
Type serializer used for values, if any.
- _valueTypeSerializer - Variable in class org.codehaus.jackson.map.ser.std.EnumMapSerializer
-
Type serializer used for values, if any.
- _valueTypeSerializer - Variable in class org.codehaus.jackson.map.ser.std.MapSerializer
-
Type identifier serializer used for values, if any.
- _valueTypeSerializer - Variable in class org.codehaus.jackson.map.ser.std.StdArraySerializers.ArraySerializerBase
-
Type serializer used for values, if any.
- _verifyPrettyValueWrite(String, int) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- _verifyPrettyValueWrite(String, int) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- _verifyValueWrite(String) - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _verifyValueWrite(String) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- _verifyValueWrite(String) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- _verifyValueWrite(String) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- _version - Variable in class org.codehaus.jackson.map.module.SimpleModule
-
- _visibilityChecker - Variable in class org.codehaus.jackson.map.introspect.POJOPropertiesCollector
-
- _visibilityChecker - Variable in class org.codehaus.jackson.map.MapperConfig.Base
-
Object used for determining whether specific property elements
(method, constructors, fields) can be auto-detected based on
their visibility (access modifiers).
- _widen(Class<?>) - Method in class org.codehaus.jackson.type.JavaType
-
- _withArgsCreator - Variable in class org.codehaus.jackson.map.deser.std.StdValueInstantiator
-
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.CollectionSerializer
-
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.ContainerSerializerBase
-
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.EnumMapSerializer
-
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.EnumSetSerializer
-
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.IterableSerializer
-
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.MapSerializer
-
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.ObjectArraySerializer
-
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.BooleanArraySerializer
-
Booleans never add type info; hence, even if type serializer is suggested,
we'll ignore it...
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.DoubleArraySerializer
-
Doubles never add type info; hence, even if type serializer is suggested,
we'll ignore it...
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.FloatArraySerializer
-
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.IntArraySerializer
-
Ints never add type info; hence, even if type serializer is suggested,
we'll ignore it...
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.LongArraySerializer
-
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.ShortArraySerializer
-
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.StdArraySerializers.StringArraySerializer
-
Strings never add type info; hence, even if type serializer is suggested,
we'll ignore it...
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.StdContainerSerializers.IndexedListSerializer
-
- _withValueTypeSerializer(TypeSerializer) - Method in class org.codehaus.jackson.map.ser.std.StdContainerSerializers.IteratorSerializer
-
- _wrapError(String, Throwable) - Method in class org.codehaus.jackson.impl.JsonParserMinimalBase
-
- _write7BitBinaryWithLength(byte[], int, int) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- _writeBinary(Base64Variant, byte[], int, int) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- _writeBinary(Base64Variant, byte[], int, int) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- _writeContext - Variable in class org.codehaus.jackson.impl.JsonGeneratorBase
-
Object that keeps track of the current contextual state
of the generator.
- _writeContext - Variable in class org.codehaus.jackson.util.TokenBuffer
-
- _writeEncodingBuffer - Variable in class org.codehaus.jackson.io.IOContext
-
Reference to the allocated I/O buffer used for low-level
encoding-related buffering.
- _writeEndArray() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _writeEndObject() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _writeFieldName(String) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- _writeFieldName(SerializableString) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- _writeFieldName(String, boolean) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- _writeFieldName(SerializableString, boolean) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- _writeFieldName(SerializableString) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- _writeFieldNameUnicode(SerializableString, byte[]) - Method in class org.codehaus.jackson.smile.SmileGenerator
-
- _writePPFieldName(String, boolean) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
Specialized version of _writeFieldName
, off-lined
to keep the "fast path" as simple (and hopefully fast) as possible.
- _writePPFieldName(SerializableString, boolean) - Method in class org.codehaus.jackson.impl.Utf8Generator
-
- _writePPFieldName(String, boolean) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
Specialized version of _writeFieldName
, off-lined
to keep the "fast path" as simple (and hopefully fast) as possible.
- _writePPFieldName(SerializableString, boolean) - Method in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- _writePrefix(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- _writePrefix(Object, JsonGenerator, Class<?>) - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- _writer - Variable in class org.codehaus.jackson.impl.WriterBasedGenerator
-
- _writeSimpleObject(Object) - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
Helper method to try to call appropriate write method for given
untyped Object.
- _writeStartArray() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _writeStartObject() - Method in class org.codehaus.jackson.impl.JsonGeneratorBase
-
- _writeSuffix(Object, JsonGenerator) - Method in class org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
-
- _xmlAdapter - Variable in class org.codehaus.jackson.xc.XmlAdapterJsonDeserializer
-