| Package | Description | 
|---|---|
| com.microsoft.azure.storage.table | 
 This package contains the storage service table classes. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
EntityResolver<?> | 
QueryTableOperation.getResolver()
Gets the resolver to project the entity retrieved as a particular type. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
<R> Iterable<R> | 
CloudTable.execute(TableQuery<?> query,
       EntityResolver<R> resolver)
Executes a query, applying the specified  
EntityResolver to the result. | 
<R> Iterable<R> | 
CloudTable.execute(TableQuery<?> query,
       EntityResolver<R> resolver,
       TableRequestOptions options,
       OperationContext opContext)
Executes a query, applying the specified  
EntityResolver to the result, using the
 specified TableRequestOptions and OperationContext. | 
<R> ResultSegment<R> | 
CloudTable.executeSegmented(TableQuery<?> query,
                EntityResolver<R> resolver,
                ResultContinuation continuationToken)
Executes a query in segmented mode with the specified  
ResultContinuation continuation token,
 applying the EntityResolver to the result. | 
<R> ResultSegment<R> | 
CloudTable.executeSegmented(TableQuery<?> query,
                EntityResolver<R> resolver,
                ResultContinuation continuationToken,
                TableRequestOptions options,
                OperationContext opContext)
Executes a query in segmented mode with the specified  
ResultContinuation continuation token,
 using the specified TableRequestOptions and OperationContext, applying the EntityResolver
 to the result. | 
static TableOperation | 
TableOperation.retrieve(String partitionKey,
        String rowKey,
        EntityResolver<?> resolver)
A static factory method returning a  
TableOperation instance to retrieve the specified table entity and
 return a projection of it using the specified resolver. | 
void | 
TableBatchOperation.retrieve(String partitionKey,
        String rowKey,
        EntityResolver<?> resolver)
Adds a table operation to retrieve an entity of the specified class type with the specified PartitionKey and
 RowKey to the batch operation. 
 | 
/** 
* Copyright Microsoft Corporation 
* 
* Licensed under the Apache License, Version 2.0 (the "License"); 
* you may not use this file except in compliance with the License. 
* You may obtain a copy of the License at 
* http://www.apache.org/licenses/LICENSE-2.0 
* 
* Unless required by applicable law or agreed to in writing, software 
* distributed under the License is distributed on an "AS IS" BASIS, 
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
* See the License for the specific language governing permissions and 
* limitations under the License. 
*/