public class QueryTableOperation extends TableOperation
TableOperation
to implement a query to retrieve a single table entity. To execute a
QueryTableOperation
instance, call the execute
method on a CloudTableClient
instance.
This operation can be executed directly or as part of a TableBatchOperation
. If the
QueryTableOperation
returns an entity result, it is stored in the corresponding TableResult
returned
by the execute
method.Modifier and Type | Method and Description |
---|---|
String |
getPartitionKey()
Gets the PartitionKey value for the entity to retrieve.
|
EntityResolver<?> |
getResolver()
Gets the resolver to project the entity retrieved as a particular type.
|
String |
getRowKey()
Gets the RowKey value for the entity to retrieve.
|
delete, insert, insert, insertOrMerge, insertOrReplace, merge, replace, retrieve, retrieve
public String getPartitionKey()
String
containing the PartitionKey value for the entity.public EntityResolver<?> getResolver()
EntityResolver
instance.public String getRowKey()
String
containing the RowKey value for the entity.Copyright © 2018. All Rights Reserved.