Class GetItemOutcome
- java.lang.Object
-
- com.amazonaws.services.dynamodbv2.document.GetItemOutcome
-
public class GetItemOutcome extends Object
The outcome of getting an item from DynamoDB table.
-
-
Constructor Summary
Constructors Constructor Description GetItemOutcome(GetItemResult result)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetItemResultgetGetItemResult()Returns a non-null low-level result returned from the server side.ItemgetItem()Returns all the returned attributes as anItem; or null if the item doesn't exist.StringtoString()
-
-
-
Constructor Detail
-
GetItemOutcome
public GetItemOutcome(GetItemResult result)
- Parameters:
result- the low-level result; must not be null
-
-
Method Detail
-
getItem
public Item getItem()
Returns all the returned attributes as anItem; or null if the item doesn't exist.
-
getGetItemResult
public GetItemResult getGetItemResult()
Returns a non-null low-level result returned from the server side.
-
-