/external/jackson-core/src/test/java/com/fasterxml/jackson/core/write/ |
D | WriteTypeIdTest.java | 10 import com.fasterxml.jackson.core.type.WritableTypeId; 38 WritableTypeId typeId = new WritableTypeId(data, JsonToken.START_OBJECT, "typeId"); in testBasicTypeIdWriteForObject() 39 typeId.include = WritableTypeId.Inclusion.METADATA_PROPERTY; in testBasicTypeIdWriteForObject() 51 typeId = new WritableTypeId(data, JsonToken.START_OBJECT, "typeId"); in testBasicTypeIdWriteForObject() 52 typeId.include = WritableTypeId.Inclusion.WRAPPER_ARRAY; in testBasicTypeIdWriteForObject() 63 typeId = new WritableTypeId(data, JsonToken.START_OBJECT, "typeId"); in testBasicTypeIdWriteForObject() 64 typeId.include = WritableTypeId.Inclusion.WRAPPER_OBJECT; in testBasicTypeIdWriteForObject() 74 typeId = new WritableTypeId(data, JsonToken.START_OBJECT, "typeId"); in testBasicTypeIdWriteForObject() 75 typeId.include = WritableTypeId.Inclusion.PARENT_PROPERTY; in testBasicTypeIdWriteForObject() 96 WritableTypeId typeId = new WritableTypeId(data, JsonToken.START_ARRAY, "typeId"); in testBasicTypeIdWriteForArray() [all …]
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/ |
D | TypeSerializer.java | 6 import com.fasterxml.jackson.core.type.WritableTypeId; 79 public WritableTypeId typeId(Object value, JsonToken valueShape) { in typeId() 80 WritableTypeId typeIdDef = new WritableTypeId(value, valueShape); in typeId() 83 typeIdDef.include = WritableTypeId.Inclusion.PAYLOAD_PROPERTY; in typeId() 87 typeIdDef.include = WritableTypeId.Inclusion.PARENT_PROPERTY; in typeId() 91 typeIdDef.include = WritableTypeId.Inclusion.METADATA_PROPERTY; in typeId() 95 typeIdDef.include = WritableTypeId.Inclusion.WRAPPER_ARRAY; in typeId() 98 typeIdDef.include = WritableTypeId.Inclusion.WRAPPER_OBJECT; in typeId() 106 public WritableTypeId typeId(Object value, JsonToken valueShape, in typeId() 108 WritableTypeId typeId = typeId(value, valueShape); in typeId() [all …]
|
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/type/ |
D | WritableTypeId.java | 20 public class WritableTypeId class 156 public WritableTypeId() { } in WritableTypeId() method in WritableTypeId 162 public WritableTypeId(Object value, JsonToken valueShape0) { in WritableTypeId() method in WritableTypeId 171 public WritableTypeId(Object value, Class<?> valueType0, JsonToken valueShape0) { in WritableTypeId() method in WritableTypeId 181 public WritableTypeId(Object value, JsonToken valueShape0, Object id0) in WritableTypeId() method in WritableTypeId
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/ |
D | TypeSerializerBase.java | 9 import com.fasterxml.jackson.core.type.WritableTypeId; 42 public WritableTypeId writeTypePrefix(JsonGenerator g, in writeTypePrefix() 43 WritableTypeId idMetadata) throws IOException in writeTypePrefix() 50 public WritableTypeId writeTypeSuffix(JsonGenerator g, in writeTypeSuffix() 51 WritableTypeId idMetadata) throws IOException in writeTypeSuffix() 61 protected void _generateTypeId(WritableTypeId idMetadata) { in _generateTypeId()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/ |
D | TimeZoneSerializer.java | 7 import com.fasterxml.jackson.core.type.WritableTypeId; 26 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
D | JsonValueSerializer.java | 11 import com.fasterxml.jackson.core.type.WritableTypeId; 208 WritableTypeId typeIdDef = typeSer0.writeTypePrefix(gen, in serializeWithType() 377 public WritableTypeId writeTypePrefix(JsonGenerator g, in writeTypePrefix() 378 WritableTypeId typeId) throws IOException { in writeTypePrefix() 385 public WritableTypeId writeTypeSuffix(JsonGenerator g, in writeTypeSuffix() 386 WritableTypeId typeId) throws IOException { in writeTypeSuffix()
|
D | RawSerializer.java | 7 import com.fasterxml.jackson.core.type.WritableTypeId; 39 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
D | InetSocketAddressSerializer.java | 8 import com.fasterxml.jackson.core.type.WritableTypeId; 46 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
D | StdScalarSerializer.java | 7 import com.fasterxml.jackson.core.type.WritableTypeId; 55 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
D | TokenBufferSerializer.java | 7 import com.fasterxml.jackson.core.type.WritableTypeId; 53 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
D | ToStringSerializerBase.java | 8 import com.fasterxml.jackson.core.type.WritableTypeId; 56 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
D | InetAddressSerializer.java | 8 import com.fasterxml.jackson.core.type.WritableTypeId; 93 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
D | ByteArraySerializer.java | 8 import com.fasterxml.jackson.core.type.WritableTypeId; 58 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
D | ArraySerializerBase.java | 7 import com.fasterxml.jackson.core.type.WritableTypeId; 131 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
D | NumberSerializers.java | 11 import com.fasterxml.jackson.core.type.WritableTypeId; 241 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
D | AsArraySerializerBase.java | 9 import com.fasterxml.jackson.core.type.WritableTypeId; 256 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ext/ |
D | NioPathSerializer.java | 9 import com.fasterxml.jackson.core.type.WritableTypeId; 37 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/ |
D | UnknownSerializer.java | 7 import com.fasterxml.jackson.core.type.WritableTypeId; 47 WritableTypeId typeIdDef = typeSer.writeTypePrefix(gen, in serializeWithType()
|
D | StringCollectionSerializer.java | 7 import com.fasterxml.jackson.core.type.WritableTypeId; 89 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
D | IndexedStringListSerializer.java | 7 import com.fasterxml.jackson.core.type.WritableTypeId; 86 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
D | BeanAsArraySerializer.java | 8 import com.fasterxml.jackson.core.type.WritableTypeId; 152 WritableTypeId typeIdDef = _typeIdDef(typeSer, bean, JsonToken.START_ARRAY); in serializeWithType()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/node/ |
D | ValueNode.java | 7 import com.fasterxml.jackson.core.type.WritableTypeId; 46 WritableTypeId typeIdDef = typeSer.writeTypePrefix(g, in serializeWithType()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/ |
D | TypeBase.java | 9 import com.fasterxml.jackson.core.type.WritableTypeId; 171 WritableTypeId typeIdDef = new WritableTypeId(this, JsonToken.VALUE_STRING); in serializeWithType()
|
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/ |
D | JsonGenerator.java | 16 import com.fasterxml.jackson.core.type.WritableTypeId; 17 import com.fasterxml.jackson.core.type.WritableTypeId.Inclusion; 1546 public WritableTypeId writeTypePrefix(WritableTypeId typeIdDef) throws IOException in writeTypePrefix() 1565 typeIdDef.include = incl = WritableTypeId.Inclusion.WRAPPER_ARRAY; in writeTypePrefix() 1608 public WritableTypeId writeTypeSuffix(WritableTypeId typeIdDef) throws IOException in writeTypeSuffix()
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/node/ |
D | TestConversions.java | 13 import com.fasterxml.jackson.core.type.WritableTypeId; 103 WritableTypeId typeIdDef = new WritableTypeId(this, JsonToken.START_OBJECT); in serializeWithType()
|