Home
last modified time | relevance | path

Searched refs:_typeId (Results 1 – 5 of 5) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/
DBeanSerializerBuilder.java62 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/
DInvalidTypeIdException.java25 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/
DBeanSerializerBase.java85 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()
DStdKeySerializers.java144 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/
DTokenBuffer.java116 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()