Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/exc/
DPropertyBindingException.java37 protected final Collection<Object> _propertyIds; field in PropertyBindingException
55 _propertyIds = propertyIds; in PropertyBindingException()
85 if (suffix == null && _propertyIds != null) { in getMessageSuffix()
87 int len = _propertyIds.size(); in getMessageSuffix()
90 sb.append(String.valueOf(_propertyIds.iterator().next())); in getMessageSuffix()
94 Iterator<Object> it = _propertyIds.iterator(); in getMessageSuffix()
140 if (_propertyIds == null) { in getKnownPropertyIds()
143 return Collections.unmodifiableCollection(_propertyIds); in getKnownPropertyIds()