Uses of Class
com.dslplatform.json.Nullable

Packages that use Nullable
com.dslplatform.json   
com.dslplatform.json.processor   
 

Uses of Nullable in com.dslplatform.json
 

Fields in com.dslplatform.json with annotations of type Nullable
 TContext DslJson.context
          The context of this instance.
protected  DslJson.Fallback<TContext> DslJson.fallback
           
 

Methods in com.dslplatform.json with annotations of type Nullable
<TResult> TResult
DslJson.deserialize(Class<TResult> manifest, byte[] body, int size)
          Convenient deserialize API for working with bytes.
<TResult> TResult
DslJson.deserialize(Class<TResult> manifest, InputStream stream)
          Convenient deserialize API for working with streams.
<TResult> TResult
DslJson.deserialize(Class<TResult> manifest, InputStream stream, byte[] buffer)
          Convenient deserialize API for working with streams.
<T> T
DslJson.deserialize(JsonReader.ReadObject<T> converter, JsonReader<TContext> input)
          Reusable deserialize API.
 T JsonReader.ReadJsonObject.deserialize(JsonReader reader)
           
 Object DslJson.Fallback.deserialize(TContext context, Type manifest, byte[] body, int size)
           
 Object DslJson.Fallback.deserialize(TContext context, Type manifest, InputStream stream)
           
 Object DslJson.deserialize(Type manifest, byte[] body, int size)
          Deserialize API for working with bytes.
 Object DslJson.deserialize(Type manifest, InputStream stream)
          Deserialize API for working with streams.
 Object DslJson.deserialize(Type manifest, InputStream stream, byte[] buffer)
          Deserialize API for working with streams.
<TResult> List<TResult>
DslJson.deserializeList(Class<TResult> manifest, byte[] body, int size)
          Convenient deserialize list API for working with bytes.
<TResult> List<TResult>
DslJson.deserializeList(Class<TResult> manifest, InputStream stream)
          Convenient deserialize list API for working with streams.
<TResult> List<TResult>
DslJson.deserializeList(Class<TResult> manifest, InputStream stream, byte[] buffer)
          This is deprecated to avoid using it.
static String StringConverter.deserializeNullable(JsonReader reader)
           
static Object ObjectConverter.deserializeObject(JsonReader reader)
           
static Object DslJson.deserializeObject(JsonReader reader)
          Deprecated. 
 Object DslJson.getDefault(Type manifest)
           
protected  JsonReader.ReadJsonObject<JsonObject> DslJson.getObjectReader(Class<?> manifest)
           
<TResult> Iterator<TResult>
DslJson.iterateOver(Class<TResult> manifest, InputStream stream)
          Streaming API for collection deserialization.
<TResult> Iterator<TResult>
DslJson.iterateOver(Class<TResult> manifest, InputStream stream, byte[] buffer)
          Streaming API for collection deserialization.
<T> T
JsonReader.next(Class<T> manifest)
          Will advance to next token and read the JSON into specified type
<T> T
JsonReader.next(Class<T> manifest, T instance)
          Will advance to next token and bind the JSON to provided instance
<T> T
JsonReader.next(JsonReader.BindObject<T> binder, T instance)
          Will advance to next token and bind the JSON to provided instance
<T> T
JsonReader.next(JsonReader.ReadObject<T> reader)
          Will advance to next token and read the JSON into specified type
 T JsonReader.ReadObject.read(JsonReader reader)
           
<T> T[]
JsonReader.readArray(JsonReader.ReadObject<T> readObject, T[] emptyArray)
           
<T> ArrayList<T>
JsonReader.readCollection(JsonReader.ReadObject<T> readObject)
           
<K,V> LinkedHashMap<K,V>
JsonReader.readMap(JsonReader.ReadObject<K> readKey, JsonReader.ReadObject<V> readValue)
           
<T> LinkedHashSet<T>
JsonReader.readSet(JsonReader.ReadObject<T> readObject)
           
 JsonReader.ReadObject DslJson.registerReader(Type manifest, JsonReader.ReadObject<?> reader)
          Register custom reader for specific type (JSON -> instance conversion).
 JsonWriter.WriteObject DslJson.registerWriter(Type manifest, JsonWriter.WriteObject<?> writer)
          Register custom writer for specific type (instance -> JSON conversion).
 T DslJson.ConverterFactory.tryCreate(Type manifest, DslJson dslJson)
           
<T> JsonReader.BindObject<T>
DslJson.tryFindBinder(Class<T> manifest)
          Try to find registered binder for provided type.
 JsonReader.BindObject<?> DslJson.tryFindBinder(Type manifest)
          Try to find registered binder for provided type.
<T> JsonReader.ReadObject<T>
DslJson.tryFindReader(Class<T> manifest)
          Try to find registered reader for provided type.
 JsonReader.ReadObject<?> DslJson.tryFindReader(Type manifest)
          Try to find registered reader for provided type.
<T> JsonWriter.WriteObject<T>
DslJson.tryFindWriter(Class<T> manifest)
          Try to find registered writer for provided type.
 JsonWriter.WriteObject<?> DslJson.tryFindWriter(Type manifest)
          Try to find registered writer for provided type.
 

Method parameters in com.dslplatform.json with annotations of type Nullable
 Object DslJson.Fallback.deserialize(TContext context, Type manifest, byte[] body, int size)
           
 Object DslJson.Fallback.deserialize(TContext context, Type manifest, InputStream stream)
           
 DslJson.Settings<TContext> DslJson.Settings.fallbackTo(DslJson.Fallback<TContext> fallback)
          Deprecated. 
 Object DslJson.getDefault(Type manifest)
           
<T> void
DslJson.iterateOver(Iterator<T> iterator, Class<T> manifest, OutputStream stream, JsonWriter writer)
          Streaming API for collection serialization.
<T> void
DslJson.iterateOver(Iterator<T> iterator, OutputStream stream, JsonWriter writer)
          Streaming API for collection serialization.
 ParsingException JsonReader.newParseErrorWith(String shortDescription, int positionOffset, String longDescriptionPrefix, String longDescriptionMessage, Object argument, String longDescriptionSuffix)
           
 ParsingException JsonReader.newParseErrorWith(String description, Object argument)
           
 JsonReader<TContext> JsonReader.process(byte[] newBuffer, int newLength)
          Bind byte[] buffer for processing.
 JsonReader<TContext> JsonReader.process(InputStream stream)
          Bind input stream for processing.
<T,S extends T>
void
DslJson.registerBinder(Class<T> manifest, JsonReader.BindObject<S> binder)
          Register custom binder for specific type (JSON -> instance conversion).
 void DslJson.registerBinder(Type manifest, JsonReader.BindObject<?> binder)
          Register custom binder for specific type (JSON -> instance conversion).
<T,S extends T>
void
DslJson.registerReader(Class<T> manifest, JsonReader.ReadObject<S> reader)
          Register custom reader for specific type (JSON -> instance conversion).
 JsonReader.ReadObject DslJson.registerReader(Type manifest, JsonReader.ReadObject<?> reader)
          Register custom reader for specific type (JSON -> instance conversion).
<T> void
DslJson.registerWriter(Class<T> manifest, JsonWriter.WriteObject<T> writer)
          Register custom writer for specific type (instance -> JSON conversion).
 JsonWriter.WriteObject DslJson.registerWriter(Type manifest, JsonWriter.WriteObject<?> writer)
          Register custom writer for specific type (instance -> JSON conversion).
 void JsonWriter.reset(OutputStream stream)
          Resets the writer - specifies the target stream and sets the position in buffer to 0.
static void BoolConverter.serialize(boolean[] value, JsonWriter sw)
           
static void BinaryConverter.serialize(byte[] value, JsonWriter sw)
           
<T> void
JsonWriter.serialize(Collection<T> collection, JsonWriter.WriteObject<T> encoder)
          Convenience method for serializing collection through instance serializer (WriteObject).
static void NumberConverter.serialize(double[] value, JsonWriter sw)
           
static void NumberConverter.serialize(float[] value, JsonWriter sw)
           
static void JavaGeomConverter.serialize(Image value, JsonWriter sw)
           
static void NumberConverter.serialize(int[] values, JsonWriter sw)
           
<T extends JsonObject>
void
DslJson.serialize(JsonWriter writer, Collection<T> collection)
          Deprecated. 
<T extends JsonObject>
void
DslJson.serialize(JsonWriter writer, List<T> list)
          Deprecated. 
 void DslJson.serialize(JsonWriter writer, Object value)
          Main serialization API.
<T extends JsonObject>
void
DslJson.serialize(JsonWriter writer, T[] array)
          Deprecated. 
 boolean DslJson.serialize(JsonWriter writer, Type manifest, Object value)
          Generic serialize API.
<T> void
JsonWriter.serialize(List<T> list, JsonWriter.WriteObject<T> encoder)
          Convenience method for serializing list through instance serializer (WriteObject).
static void NumberConverter.serialize(long[] values, JsonWriter sw)
           
<K,V> void
JsonWriter.serialize(Map<K,V> map, JsonWriter.WriteObject<K> keyEncoder, JsonWriter.WriteObject<V> valueEncoder)
           
 void DslJson.serialize(Object value, OutputStream stream)
          Convenient serialize API.
 void DslJson.Fallback.serialize(Object instance, OutputStream stream)
           
static void NumberConverter.serialize(short[] value, JsonWriter sw)
           
<T> void
JsonWriter.serialize(T[] array, JsonWriter.WriteObject<T> encoder)
          Convenience method for serializing array through instance serializer (WriteObject).
static void JavaGeomConverter.serializeLocationNullable(Point2D value, JsonWriter sw)
           
static void NumberConverter.serializeNullable(BigDecimal value, JsonWriter sw)
           
static void BoolConverter.serializeNullable(Boolean value, JsonWriter sw)
           
static void NumberConverter.serializeNullable(Double value, JsonWriter sw)
           
static void XmlConverter.serializeNullable(Element value, JsonWriter sw)
           
static void NumberConverter.serializeNullable(Float value, JsonWriter sw)
           
static void NetConverter.serializeNullable(InetAddress value, JsonWriter sw)
           
static void NumberConverter.serializeNullable(Integer value, JsonWriter sw)
           
static void NumberConverter.serializeNullable(Long value, JsonWriter sw)
           
static void MapConverter.serializeNullable(Map<String,String> value, JsonWriter sw)
           
static void StringConverter.serializeNullable(String value, JsonWriter sw)
           
static void NetConverter.serializeNullable(URI value, JsonWriter sw)
           
static void UUIDConverter.serializeNullable(UUID value, JsonWriter sw)
           
static void ObjectConverter.serializeNullableMap(Map<String,Object> value, JsonWriter sw)
           
 void JsonWriter.serializeObject(Object value)
          Generic object serializer which is used for "unknown schema" objects.
static void ObjectConverter.serializeObject(Object value, JsonWriter sw)
           
static void JavaGeomConverter.serializePointNullable(Point value, JsonWriter sw)
           
static void JavaGeomConverter.serializeRectangleNullable(Rectangle2D value, JsonWriter sw)
           
static void StringConverter.serializeShortNullable(String value, JsonWriter sw)
           
 DslJson.Settings<TContext> DslJson.Settings.useKeyCache(StringCache keyCache)
          Use specific key cache implementation.
 DslJson.Settings<TContext> DslJson.Settings.useStringValuesCache(StringCache valuesCache)
          Use specific string values cache implementation.
 DslJson.Settings<TContext> DslJson.Settings.withContext(TContext context)
          Pass in context for DslJson.
 void JsonWriter.WriteObject.write(JsonWriter writer, T value)
           
 

Constructor parameters in com.dslplatform.json with annotations of type Nullable
DslJson(TContext context, boolean javaSpecifics, DslJson.Fallback<TContext> fallback, boolean omitDefaults, StringCache keyCache, Iterable<Configuration> serializers)
          Deprecated. 
DslJson(TContext context, boolean javaSpecifics, DslJson.Fallback<TContext> fallback, boolean omitDefaults, StringCache keyCache, Iterable<Configuration> serializers)
          Deprecated. 
DslJson(TContext context, boolean javaSpecifics, DslJson.Fallback<TContext> fallback, boolean omitDefaults, StringCache keyCache, Iterable<Configuration> serializers)
          Deprecated. 
JsonReader(byte[] buffer, int length, TContext context, char[] tmp, StringCache keyCache, StringCache valuesCache)
          Deprecated. 
JsonReader(byte[] buffer, int length, TContext context, char[] tmp, StringCache keyCache, StringCache valuesCache)
          Deprecated. 
JsonReader(byte[] buffer, int length, TContext context, char[] tmp, StringCache keyCache, StringCache valuesCache)
          Deprecated. 
JsonReader(byte[] buffer, TContext context)
          Deprecated. 
JsonReader(byte[] buffer, TContext context, StringCache keyCache, StringCache valuesCache)
          Deprecated. 
JsonReader(byte[] buffer, TContext context, StringCache keyCache, StringCache valuesCache)
          Deprecated. 
JsonReader(byte[] buffer, TContext context, StringCache keyCache, StringCache valuesCache)
          Deprecated. 
SerializationException(String reason)
           
SerializationException(String reason, Throwable cause)
           
SerializationException(String reason, Throwable cause)
           
SerializationException(Throwable cause)
           
 

Uses of Nullable in com.dslplatform.json.processor
 

Methods in com.dslplatform.json.processor with annotations of type Nullable
 List<String> AttributeInfo.collectionContent(TypeSupport typeSupport, Map<String,StructInfo> structs)
           
static TypeElement Analysis.deserializeAs(AnnotationMirror annotation)
           
 ExecutableElement Analysis.findAnnotatedConstructor(Element element, DeclaredType discoveredBy)
           
 TypeMirror Analysis.findConverter(Element property)
           
 List<ExecutableElement> Analysis.findMatchingConstructors(Element element)
           
 String Analysis.findNameAlias(Element property, AnnotationMirror dslAnn)
           
 AnnotationMirror Analysis.getAnnotation(Element element, DeclaredType annotationType)
           
 StructInfo StructInfo.getDeserializeTarget()
           
 ExecutableElement StructInfo.selectedConstructor()
           
 

Method parameters in com.dslplatform.json.processor with annotations of type Nullable
static String Analysis.classDiscriminator(AnnotationMirror annotation)
           
static String Analysis.className(AnnotationMirror annotation)
           
static Analysis.AccessElements Analysis.AccessElements.field(VariableElement field, VariableElement arg, AnnotationMirror annotation)
           
 String Analysis.findNameAlias(Element property, AnnotationMirror dslAnn)
           
 CompiledJson.Format[] Analysis.getFormats(AnnotationMirror ann)
           
 boolean Analysis.hasMandatoryAnnotation(Element property, AnnotationMirror dslAnn)
           
 boolean Analysis.hasNonNullable(Element property, AnnotationMirror dslAnn)
           
 int Analysis.index(Element property, AnnotationMirror dslAnn)
           
 boolean Analysis.isFullMatch(Element property, AnnotationMirror dslAnn)
           
 boolean Analysis.isMinified(AnnotationMirror ann)
           
static Analysis.AccessElements Analysis.AccessElements.readOnly(ExecutableElement read, VariableElement arg, AnnotationMirror annotation)
           
static Analysis.AccessElements Analysis.AccessElements.readOnly(VariableElement field, ExecutableElement write, AnnotationMirror annotation)
           
static Analysis.AccessElements Analysis.AccessElements.readWrite(ExecutableElement read, ExecutableElement write, AnnotationMirror annotation)
           
 void StructInfo.setDeserializeTarget(StructInfo value)
           
 

Constructor parameters in com.dslplatform.json.processor with annotations of type Nullable
Analysis.AnnotationMapping(String name, T value)
           
Analysis(ProcessingEnvironment processingEnv, AnnotationUsage annotationUsage, LogLevel logLevel, TypeSupport typeSupport, Set<String> alternativeIgnore, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeNonNullable, Map<String,String> alternativeAlias, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeMandatory, Set<String> alternativeCreators, Map<String,String> alternativeIndex, UnknownTypes unknownTypes, boolean onlyBasicFeatures, boolean includeFields, boolean includeBeanMethods, boolean includeExactMethods)
           
Analysis(ProcessingEnvironment processingEnv, AnnotationUsage annotationUsage, LogLevel logLevel, TypeSupport typeSupport, Set<String> alternativeIgnore, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeNonNullable, Map<String,String> alternativeAlias, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeMandatory, Set<String> alternativeCreators, Map<String,String> alternativeIndex, UnknownTypes unknownTypes, boolean onlyBasicFeatures, boolean includeFields, boolean includeBeanMethods, boolean includeExactMethods)
           
Analysis(ProcessingEnvironment processingEnv, AnnotationUsage annotationUsage, LogLevel logLevel, TypeSupport typeSupport, Set<String> alternativeIgnore, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeNonNullable, Map<String,String> alternativeAlias, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeMandatory, Set<String> alternativeCreators, Map<String,String> alternativeIndex, UnknownTypes unknownTypes, boolean onlyBasicFeatures, boolean includeFields, boolean includeBeanMethods, boolean includeExactMethods)
           
Analysis(ProcessingEnvironment processingEnv, AnnotationUsage annotationUsage, LogLevel logLevel, TypeSupport typeSupport, Set<String> alternativeIgnore, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeNonNullable, Map<String,String> alternativeAlias, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeMandatory, Set<String> alternativeCreators, Map<String,String> alternativeIndex, UnknownTypes unknownTypes, boolean onlyBasicFeatures, boolean includeFields, boolean includeBeanMethods, boolean includeExactMethods)
           
Analysis(ProcessingEnvironment processingEnv, AnnotationUsage annotationUsage, LogLevel logLevel, TypeSupport typeSupport, Set<String> alternativeIgnore, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeNonNullable, Map<String,String> alternativeAlias, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeMandatory, Set<String> alternativeCreators, Map<String,String> alternativeIndex, UnknownTypes unknownTypes, boolean onlyBasicFeatures, boolean includeFields, boolean includeBeanMethods, boolean includeExactMethods)
           
Analysis(ProcessingEnvironment processingEnv, AnnotationUsage annotationUsage, LogLevel logLevel, TypeSupport typeSupport, Set<String> alternativeIgnore, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeNonNullable, Map<String,String> alternativeAlias, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeMandatory, Set<String> alternativeCreators, Map<String,String> alternativeIndex, UnknownTypes unknownTypes, boolean onlyBasicFeatures, boolean includeFields, boolean includeBeanMethods, boolean includeExactMethods)
           
Analysis(ProcessingEnvironment processingEnv, AnnotationUsage annotationUsage, LogLevel logLevel, TypeSupport typeSupport, Set<String> alternativeIgnore, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeNonNullable, Map<String,String> alternativeAlias, Map<String,List<Analysis.AnnotationMapping<Boolean>>> alternativeMandatory, Set<String> alternativeCreators, Map<String,String> alternativeIndex, UnknownTypes unknownTypes, boolean onlyBasicFeatures, boolean includeFields, boolean includeBeanMethods, boolean includeExactMethods)
           
AttributeInfo(String name, ExecutableElement readMethod, ExecutableElement writeMethod, VariableElement field, TypeMirror type, boolean isList, boolean isSet, boolean isMap, AnnotationMirror annotation, boolean notNull, boolean mandatory, int index, String alias, boolean fullMatch, CompiledJson.TypeSignature typeSignature, JsonAttribute.IncludePolicy includeToMinimal, ConverterInfo converter, boolean isJsonObject, LinkedHashSet<TypeMirror> usedTypes, Map<String,Integer> typeVariablesIndex, boolean containsStructOwnerType)
           
AttributeInfo(String name, ExecutableElement readMethod, ExecutableElement writeMethod, VariableElement field, TypeMirror type, boolean isList, boolean isSet, boolean isMap, AnnotationMirror annotation, boolean notNull, boolean mandatory, int index, String alias, boolean fullMatch, CompiledJson.TypeSignature typeSignature, JsonAttribute.IncludePolicy includeToMinimal, ConverterInfo converter, boolean isJsonObject, LinkedHashSet<TypeMirror> usedTypes, Map<String,Integer> typeVariablesIndex, boolean containsStructOwnerType)
           
AttributeInfo(String name, ExecutableElement readMethod, ExecutableElement writeMethod, VariableElement field, TypeMirror type, boolean isList, boolean isSet, boolean isMap, AnnotationMirror annotation, boolean notNull, boolean mandatory, int index, String alias, boolean fullMatch, CompiledJson.TypeSignature typeSignature, JsonAttribute.IncludePolicy includeToMinimal, ConverterInfo converter, boolean isJsonObject, LinkedHashSet<TypeMirror> usedTypes, Map<String,Integer> typeVariablesIndex, boolean containsStructOwnerType)
           
AttributeInfo(String name, ExecutableElement readMethod, ExecutableElement writeMethod, VariableElement field, TypeMirror type, boolean isList, boolean isSet, boolean isMap, AnnotationMirror annotation, boolean notNull, boolean mandatory, int index, String alias, boolean fullMatch, CompiledJson.TypeSignature typeSignature, JsonAttribute.IncludePolicy includeToMinimal, ConverterInfo converter, boolean isJsonObject, LinkedHashSet<TypeMirror> usedTypes, Map<String,Integer> typeVariablesIndex, boolean containsStructOwnerType)
           
BuilderInfo(ExecutableElement factory, ExecutableElement ctor, TypeElement type, ExecutableElement build, AnnotationMirror annotation)
           
BuilderInfo(ExecutableElement factory, ExecutableElement ctor, TypeElement type, ExecutableElement build, AnnotationMirror annotation)
           
BuilderInfo(ExecutableElement factory, ExecutableElement ctor, TypeElement type, ExecutableElement build, AnnotationMirror annotation)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
StructInfo(TypeElement element, DeclaredType discoveredBy, String name, String binaryName, ObjectType type, String jsonObjectReaderPath, List<ExecutableElement> matchingConstructors, ExecutableElement annotatedConstructor, ExecutableElement annotatedFactory, BuilderInfo builder, AnnotationMirror annotation, CompiledJson.Behavior onUnknown, CompiledJson.TypeSignature typeSignature, CompiledJson.ObjectFormatPolicy objectFormatPolicy, TypeElement deserializeAs, String discriminator, String deserializeName, Element enumConstantNameSource, boolean isMinified, CompiledJson.Format[] formats, Map<String,TypeMirror> genericSignatures)
           
 



Copyright © 2019. All rights reserved.