/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsonFormatVisitors/ |
D | JsonObjectFormatVisitor.java | 3 import com.fasterxml.jackson.databind.BeanProperty; 18 public void property(BeanProperty writer) throws JsonMappingException; in property() 27 public void optionalProperty(BeanProperty writer) throws JsonMappingException; in optionalProperty() 52 public void property(BeanProperty prop) throws JsonMappingException { } in property() 59 public void optionalProperty(BeanProperty prop) throws JsonMappingException { } in optionalProperty()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/ |
D | ArraySerializerBase.java | 23 protected final BeanProperty _property; 48 protected ArraySerializerBase(Class<T> cls, BeanProperty property) in ArraySerializerBase() 65 protected ArraySerializerBase(ArraySerializerBase<?> src, BeanProperty property, in ArraySerializerBase() 77 protected ArraySerializerBase(ArraySerializerBase<?> src, BeanProperty property) in ArraySerializerBase() 87 public abstract JsonSerializer<?> _withResolved(BeanProperty prop, in _withResolved() 92 BeanProperty property) throws JsonMappingException in createContextual()
|
D | StdArraySerializers.java | 67 BeanProperty prop, Boolean unwrapSingle) { in TypedPrimitiveArraySerializer() 97 BeanProperty prop, Boolean unwrapSingle) { in BooleanArraySerializer() 102 public JsonSerializer<?> _withResolved(BeanProperty prop, Boolean unwrapSingle) { in _withResolved() 182 public ShortArraySerializer(ShortArraySerializer src, BeanProperty prop, in ShortArraySerializer() 188 public JsonSerializer<?> _withResolved(BeanProperty prop,Boolean unwrapSingle) { in _withResolved() 341 BeanProperty prop, Boolean unwrapSingle) { in IntArraySerializer() 346 public JsonSerializer<?> _withResolved(BeanProperty prop, Boolean unwrapSingle) { in _withResolved() 421 public LongArraySerializer(LongArraySerializer src, BeanProperty prop, in LongArraySerializer() 427 public JsonSerializer<?> _withResolved(BeanProperty prop,Boolean unwrapSingle) { in _withResolved() 498 public FloatArraySerializer(FloatArraySerializer src, BeanProperty prop, in FloatArraySerializer() [all …]
|
D | AsArraySerializerBase.java | 35 protected final BeanProperty _property; 96 TypeSerializer vts, BeanProperty property, JsonSerializer<Object> elementSerializer) in AsArraySerializerBase() 112 BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer, in AsArraySerializerBase() 131 BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer) in AsArraySerializerBase() 140 public final AsArraySerializerBase<T> withResolved(BeanProperty property, in withResolved() 148 public abstract AsArraySerializerBase<T> withResolved(BeanProperty property, in withResolved() 166 BeanProperty property) in createContextual()
|
D | MapProperty.java | 25 private final static BeanProperty BOGUS_PROP = new BeanProperty.Bogus(); 29 protected final BeanProperty _property; 35 public MapProperty(TypeSerializer typeSer, BeanProperty prop) in MapProperty()
|
D | CollectionSerializer.java | 9 import com.fasterxml.jackson.databind.BeanProperty; 49 BeanProperty property, JsonSerializer<Object> valueSerializer) { in CollectionSerializer() 55 BeanProperty property, TypeSerializer vts, JsonSerializer<?> valueSerializer, in CollectionSerializer() 66 public CollectionSerializer withResolved(BeanProperty property, in withResolved()
|
D | ReferenceTypeSerializer.java | 42 protected final BeanProperty _property; 112 protected ReferenceTypeSerializer(ReferenceTypeSerializer<?> base, BeanProperty property, in ReferenceTypeSerializer() 163 protected abstract ReferenceTypeSerializer<T> withResolved(BeanProperty prop, in withResolved() 199 BeanProperty property) throws JsonMappingException in createContextual() 283 protected boolean _useStatic(SerializerProvider provider, BeanProperty property, in _useStatic() 478 JavaType type, BeanProperty prop) throws JsonMappingException in _findSerializer()
|
D | StdSerializer.java | 358 BeanProperty property, JsonSerializer<?> existingSerializer) in findContextualConvertingSerializer() 391 BeanProperty prop, JsonSerializer<?> existingSerializer) in findConvertingContentSerializer() 443 BeanProperty prop, Class<?> typeForDefaults) in findFormatOverrides() 462 BeanProperty prop, Class<?> typeForDefaults, JsonFormat.Feature feat) in findFormatFeature() 475 BeanProperty prop, Class<?> typeForDefaults) in findIncludeOverrides() 490 BeanProperty property) in findAnnotatedContentSerializer()
|
D | BooleanSerializer.java | 9 import com.fasterxml.jackson.databind.BeanProperty; 48 BeanProperty property) throws JsonMappingException in createContextual() 131 BeanProperty property) throws JsonMappingException in createContextual()
|
D | AtomicReferenceSerializer.java | 27 protected AtomicReferenceSerializer(AtomicReferenceSerializer base, BeanProperty property, in AtomicReferenceSerializer() 37 protected ReferenceTypeSerializer<AtomicReference<?>> withResolved(BeanProperty prop, in withResolved()
|
D | EnumSetSerializer.java | 22 BeanProperty property, TypeSerializer vts, JsonSerializer<?> valueSerializer, in EnumSetSerializer() 34 public EnumSetSerializer withResolved(BeanProperty property, in withResolved()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/ |
D | AsArrayTypeSerializer.java | 5 import com.fasterxml.jackson.databind.BeanProperty; 14 public AsArrayTypeSerializer(TypeIdResolver idRes, BeanProperty property) { in AsArrayTypeSerializer() 19 public AsArrayTypeSerializer forProperty(BeanProperty prop) { in forProperty()
|
D | AsExistingPropertyTypeSerializer.java | 5 import com.fasterxml.jackson.databind.BeanProperty; 16 BeanProperty property, String propName) in AsExistingPropertyTypeSerializer() 22 public AsExistingPropertyTypeSerializer forProperty(BeanProperty prop) { in forProperty()
|
D | AsPropertyTypeSerializer.java | 5 import com.fasterxml.jackson.databind.BeanProperty; 20 public AsPropertyTypeSerializer(TypeIdResolver idRes, BeanProperty property, String propName) in AsPropertyTypeSerializer() 27 public AsPropertyTypeSerializer forProperty(BeanProperty prop) { in forProperty()
|
D | AsExternalTypeDeserializer.java | 5 import com.fasterxml.jackson.databind.BeanProperty; 32 BeanProperty property) { in AsExternalTypeDeserializer() 37 public TypeDeserializer forProperty(BeanProperty prop) { in forProperty()
|
D | AsWrapperTypeSerializer.java | 8 import com.fasterxml.jackson.databind.BeanProperty; 22 public AsWrapperTypeSerializer(TypeIdResolver idRes, BeanProperty property) { in AsWrapperTypeSerializer() 27 public AsWrapperTypeSerializer forProperty(BeanProperty prop) { in forProperty()
|
D | AsExternalTypeSerializer.java | 7 import com.fasterxml.jackson.databind.BeanProperty; 28 public AsExternalTypeSerializer(TypeIdResolver idRes, BeanProperty property, String propName) { in AsExternalTypeSerializer() 34 public AsExternalTypeSerializer forProperty(BeanProperty prop) { in forProperty()
|
D | TypeSerializerBase.java | 10 import com.fasterxml.jackson.databind.BeanProperty; 18 protected final BeanProperty _property; 20 protected TypeSerializerBase(TypeIdResolver idRes, BeanProperty property) in TypeSerializerBase()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | SerializerProvider.java | 508 public JsonSerializer<Object> findValueSerializer(Class<?> valueType, BeanProperty property) in findValueSerializer() 551 public JsonSerializer<Object> findValueSerializer(JavaType valueType, BeanProperty property) in findValueSerializer() 645 …public JsonSerializer<Object> findPrimaryPropertySerializer(JavaType valueType, BeanProperty prope… in findPrimaryPropertySerializer() 673 BeanProperty property) in findPrimaryPropertySerializer() 717 …public JsonSerializer<Object> findContentValueSerializer(JavaType valueType, BeanProperty property) in findContentValueSerializer() 745 BeanProperty property) in findContentValueSerializer() 784 boolean cache, BeanProperty property) in findTypedValueSerializer() 829 BeanProperty property) in findTypedValueSerializer() 877 public JsonSerializer<Object> findKeySerializer(JavaType keyType, BeanProperty property) in findKeySerializer() 888 public JsonSerializer<Object> findKeySerializer(Class<?> rawKeyType, BeanProperty property) in findKeySerializer() [all …]
|
D | InjectableValues.java | 28 BeanProperty forProperty, Object beanInstance) throws JsonMappingException; in findInjectableValue() 68 BeanProperty forProperty, Object beanInstance) throws JsonMappingException in findInjectableValue()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/ |
D | PropertySerializerMap.java | 5 import com.fasterxml.jackson.databind.BeanProperty; 61 SerializerProvider provider, BeanProperty property) in findAndAddPrimarySerializer() 69 SerializerProvider provider, BeanProperty property) in findAndAddPrimarySerializer() 87 SerializerProvider provider, BeanProperty property) in findAndAddSecondarySerializer() 95 SerializerProvider provider, BeanProperty property) in findAndAddSecondarySerializer() 141 SerializerProvider provider, BeanProperty property) in findAndAddKeySerializer()
|
D | MapEntrySerializer.java | 38 protected final BeanProperty _property; 109 BeanProperty property) in MapEntrySerializer() 124 protected MapEntrySerializer(MapEntrySerializer src, BeanProperty property, in MapEntrySerializer() 133 protected MapEntrySerializer(MapEntrySerializer src, BeanProperty property, in MapEntrySerializer() 162 public MapEntrySerializer withResolved(BeanProperty property, in withResolved() 184 BeanProperty property) throws JsonMappingException in createContextual()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/ |
D | SettableAnyProperty.java | 32 protected final BeanProperty _property; 58 public SettableAnyProperty(BeanProperty property, AnnotatedMember setter, JavaType type, in SettableAnyProperty() 72 public SettableAnyProperty(BeanProperty property, AnnotatedMember setter, JavaType type, in SettableAnyProperty() 111 public BeanProperty getProperty() { return _property; } in getProperty()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/ |
D | NullsFailProvider.java | 25 public static NullsFailProvider constructForProperty(BeanProperty prop) { in constructForProperty() 30 public static NullsFailProvider constructForProperty(BeanProperty prop, JavaType type) { in constructForProperty()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/ |
D | TypeDeserializer.java | 6 import com.fasterxml.jackson.databind.BeanProperty; 39 public abstract TypeDeserializer forProperty(BeanProperty prop); in forProperty()
|