Searched refs:_typeId (Results 1 – 5 of 5) sorted by relevance
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/ |
D | BeanSerializerBuilder.java | 62 protected AnnotatedMember _typeId; field in BeanSerializerBuilder 134 if (_typeId != null) { in setTypeId() 135 … throw new IllegalArgumentException("Multiple type ids specified with "+_typeId+" and "+idProp); in setTypeId() 137 _typeId = idProp; in setTypeId() 167 public AnnotatedMember getTypeId() { return _typeId; } in getTypeId() 186 if (_typeId != null) { in build() 188 … _typeId.fixAccess(_config.isEnabled(MapperFeature.OVERRIDE_PUBLIC_ACCESS_MODIFIERS)); in build()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/exc/ |
D | InvalidTypeIdException.java | 25 protected final String _typeId; field in InvalidTypeIdException 38 _typeId = typeId; in InvalidTypeIdException() 53 public String getTypeId() { return _typeId; } in getTypeId()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/ |
D | BeanSerializerBase.java | 85 final protected AnnotatedMember _typeId; field in BeanSerializerBase 122 _typeId = null; in BeanSerializerBase() 128 _typeId = builder.getTypeId(); in BeanSerializerBase() 145 _typeId = src._typeId; in BeanSerializerBase() 169 _typeId = src._typeId; in BeanSerializerBase() 213 _typeId = src._typeId; in BeanSerializerBase() 728 if (_typeId == null) { in _typeIdDef() 731 Object typeId = _typeId.getValue(bean); in _typeIdDef() 742 final Object typeId = _typeId.getValue(bean); in _customTypeId()
|
D | StdKeySerializers.java | 144 protected final int _typeId; field in StdKeySerializers.Default 148 _typeId = typeId; in Default() 153 switch (_typeId) { in serialize()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/ |
D | TokenBuffer.java | 116 protected Object _typeId; field in TokenBuffer 1007 _typeId = id; in writeTypeId() 1256 if ((_typeId = p.getTypeId()) != null) { in _checkNativeIds() 1316 next = _last.append(_appendAt, type, _objectId, _typeId); in _appendValue() 1339 next = _last.append(_appendAt, type, value, _objectId, _typeId); in _appendValue() 1362 next = _last.append(_appendAt, JsonToken.FIELD_NAME, value, _objectId, _typeId); in _appendFieldName() 1383 next =_last.append(_appendAt, type, _objectId, _typeId); in _appendStartMarker()
|