Class UnresolvedId
- java.lang.Object
-
- com.fasterxml.jackson.databind.deser.UnresolvedId
-
public class UnresolvedId extends java.lang.ObjectHelper class forUnresolvedForwardReference, to contain information about unresolved ids.- Author:
- pgelinas
-
-
Constructor Summary
Constructors Constructor Description UnresolvedId(java.lang.Object id, java.lang.Class<?> type, com.fasterxml.jackson.core.JsonLocation where)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetId()The id which is unresolved.com.fasterxml.jackson.core.JsonLocationgetLocation()java.lang.Class<?>getType()The type of object which was expected.java.lang.StringtoString()
-
-
-
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 com.fasterxml.jackson.core.JsonLocation getLocation()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-