Class UnresolvedId
- java.lang.Object
-
- com.fasterxml.jackson.databind.deser.UnresolvedId
-
public class UnresolvedId extends java.lang.Object
Helper class forUnresolvedForwardReference
, to contain information about unresolved ids.
-
-
Constructor Summary
Constructors Constructor Description UnresolvedId(java.lang.Object id, java.lang.Class<?> type, JsonLocation where)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
getId()
The id which is unresolved.JsonLocation
getLocation()
java.lang.Class<?>
getType()
The type of object which was expected.java.lang.String
toString()
-
-
-
Constructor Detail
-
UnresolvedId
public UnresolvedId(java.lang.Object id, java.lang.Class<?> type, JsonLocation where)
-
-
Method Detail
-
getId
public java.lang.Object getId()
The id which is unresolved.
-
getType
public java.lang.Class<?> getType()
The type of object which was expected.
-
getLocation
public JsonLocation getLocation()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-