| Package | Description | 
|---|---|
| com.microsoft.azure.storage.table | 
 This package contains the storage service table classes. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static <T extends TableEntity>  | 
TableQuery.from(Class<T> clazzType)
A static factory method that constructs a  
TableQuery instance and defines its table entity type. | 
TableQuery<T> | 
TableQuery.select(String[] columns)
Defines the property names of the table entity properties to return when the table query is executed. 
 | 
TableQuery<T> | 
TableQuery.take(Integer take)
Defines the upper bound for the number of entities the query returns. 
 | 
TableQuery<T> | 
TableQuery.where(String filter)
Defines a filter expression for the table query. 
 | 
| 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. | 
<T extends TableEntity>  | 
CloudTable.execute(TableQuery<T> query)
Executes a query. 
 | 
<T extends TableEntity>  | 
CloudTable.execute(TableQuery<T> query,
       TableRequestOptions options,
       OperationContext opContext)
Executes a query, 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. | 
<T extends TableEntity>  | 
CloudTable.executeSegmented(TableQuery<T> query,
                ResultContinuation continuationToken)
Executes a query in segmented mode with a  
ResultContinuation continuation token. | 
<T extends TableEntity>  | 
CloudTable.executeSegmented(TableQuery<T> query,
                ResultContinuation continuationToken,
                TableRequestOptions options,
                OperationContext opContext)
Executes a query in segmented mode with a  
ResultContinuation continuation token,
 using the specified TableRequestOptions and OperationContext. | 
/** 
* 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. 
*/