Home
last modified time | relevance | path

Searched refs:BeanProperty (Results 1 – 25 of 93) sorted by relevance

1234

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsonFormatVisitors/
DJsonObjectFormatVisitor.java3 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/
DArraySerializerBase.java23 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()
DStdArraySerializers.java67 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 …]
DAsArraySerializerBase.java35 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()
DMapProperty.java25 private final static BeanProperty BOGUS_PROP = new BeanProperty.Bogus();
29 protected final BeanProperty _property;
35 public MapProperty(TypeSerializer typeSer, BeanProperty prop) in MapProperty()
DCollectionSerializer.java9 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()
DReferenceTypeSerializer.java42 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()
DStdSerializer.java358 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()
DBooleanSerializer.java9 import com.fasterxml.jackson.databind.BeanProperty;
48 BeanProperty property) throws JsonMappingException in createContextual()
131 BeanProperty property) throws JsonMappingException in createContextual()
DAtomicReferenceSerializer.java27 protected AtomicReferenceSerializer(AtomicReferenceSerializer base, BeanProperty property, in AtomicReferenceSerializer()
37 protected ReferenceTypeSerializer<AtomicReference<?>> withResolved(BeanProperty prop, in withResolved()
DEnumSetSerializer.java22 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/
DAsArrayTypeSerializer.java5 import com.fasterxml.jackson.databind.BeanProperty;
14 public AsArrayTypeSerializer(TypeIdResolver idRes, BeanProperty property) { in AsArrayTypeSerializer()
19 public AsArrayTypeSerializer forProperty(BeanProperty prop) { in forProperty()
DAsExistingPropertyTypeSerializer.java5 import com.fasterxml.jackson.databind.BeanProperty;
16 BeanProperty property, String propName) in AsExistingPropertyTypeSerializer()
22 public AsExistingPropertyTypeSerializer forProperty(BeanProperty prop) { in forProperty()
DAsPropertyTypeSerializer.java5 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()
DAsExternalTypeDeserializer.java5 import com.fasterxml.jackson.databind.BeanProperty;
32 BeanProperty property) { in AsExternalTypeDeserializer()
37 public TypeDeserializer forProperty(BeanProperty prop) { in forProperty()
DAsWrapperTypeSerializer.java8 import com.fasterxml.jackson.databind.BeanProperty;
22 public AsWrapperTypeSerializer(TypeIdResolver idRes, BeanProperty property) { in AsWrapperTypeSerializer()
27 public AsWrapperTypeSerializer forProperty(BeanProperty prop) { in forProperty()
DAsExternalTypeSerializer.java7 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()
DTypeSerializerBase.java10 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/
DSerializerProvider.java508 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 …]
DInjectableValues.java28 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/
DPropertySerializerMap.java5 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()
DMapEntrySerializer.java38 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/
DSettableAnyProperty.java32 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/
DNullsFailProvider.java25 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/
DTypeDeserializer.java6 import com.fasterxml.jackson.databind.BeanProperty;
39 public abstract TypeDeserializer forProperty(BeanProperty prop); in forProperty()

1234