Interface DeserializerResult
public interface DeserializerResult
Result type for
ODataDeserializer
methods-
Method Summary
Modifier and TypeMethodDescriptionReturns the deserialized action parameters of anEntity
as key/value pairs.Returns an entity.Returns an entity collection.Returns the entity references from the provided document.Returns the ExpandOptions for the deserialized entity.Returns a Property or collections of properties (primitive & complex).
-
Method Details
-
getEntity
Entity getEntity()Returns an entity.- Returns:
- an
Entity
or null
-
getEntityCollection
EntityCollection getEntityCollection()Returns an entity collection.- Returns:
- an
EntityCollection
or null
-
getExpandTree
ExpandOption getExpandTree()Returns the ExpandOptions for the deserialized entity.- Returns:
- an
ExpandOption
or null
-
getActionParameters
Returns the deserialized action parameters of anEntity
as key/value pairs.- Returns:
- the action parameters
-
getProperty
Property getProperty()Returns a Property or collections of properties (primitive & complex).- Returns:
Property
or collections of properties (primitive & complex) or null
-
getEntityReferences
Returns the entity references from the provided document.- Returns:
- a collection of entity references
-