Package | Description |
---|---|
com.microsoft.azure.storage.table |
This package contains the storage service table classes.
|
Modifier and Type | Class and Description |
---|---|
class |
TableQuery<T extends TableEntity>
A class which represents a query against a specified table.
|
Modifier and Type | Class and Description |
---|---|
class |
DynamicTableEntity
A
TableEntity type which allows callers direct access to the property map of the entity. |
class |
TableServiceEntity
The
TableServiceEntity class represents the base object type for a table entity in the Storage service. |
Modifier and Type | Method and Description |
---|---|
<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 . |
protected <T extends TableEntity,R> |
CloudTableClient.executeQuerySegmentedImpl(TableQuery<T> queryToExecute,
EntityResolver<R> resolver,
ResultContinuation continuationToken,
TableRequestOptions options,
OperationContext opContext)
Reserved for internal use.
|
<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 . |
static <T extends TableEntity> |
TableQuery.from(Class<T> clazzType)
A static factory method that constructs a
TableQuery instance and defines its table entity type. |
protected <T extends TableEntity,R> |
CloudTableClient.generateIteratorForQuery(TableQuery<T> queryRef,
EntityResolver<R> resolver,
TableRequestOptions options,
OperationContext opContext)
Reserved for internal use.
|
Modifier and Type | Method and Description |
---|---|
protected TableEntity |
TableOperation.getEntity()
Reserved for internal use.
|
Modifier and Type | Method and Description |
---|---|
protected Class<? extends TableEntity> |
QueryTableOperation.getClazzType()
Reserved for internal use.
|
Modifier and Type | Method and Description |
---|---|
static TableOperation |
TableOperation.delete(TableEntity entity)
A static factory method returning a
TableOperation instance to delete the specified entity from Microsoft
Azure storage. |
void |
TableBatchOperation.delete(TableEntity entity)
Adds a table operation to delete the specified entity to the batch operation.
|
static TableOperation |
TableOperation.insert(TableEntity entity)
A static factory method returning a
TableOperation instance to insert the specified entity into
Microsoft Azure storage. |
void |
TableBatchOperation.insert(TableEntity entity)
Adds a table operation to insert the specified entity to the batch operation.
|
static TableOperation |
TableOperation.insert(TableEntity entity,
boolean echoContent)
A static factory method returning a
TableOperation instance to insert the specified entity into
Microsoft Azure storage. |
void |
TableBatchOperation.insert(TableEntity entity,
boolean echoContent)
Adds a table operation to insert the specified entity to the batch operation.
|
static TableOperation |
TableOperation.insertOrMerge(TableEntity entity)
A static factory method returning a
TableOperation instance to merge the specified entity into
Microsoft Azure storage, or insert it if it does not exist. |
void |
TableBatchOperation.insertOrMerge(TableEntity entity)
Adds a table operation to insert or merge the specified entity to the batch operation.
|
static TableOperation |
TableOperation.insertOrReplace(TableEntity entity)
A static factory method returning a
TableOperation instance to replace the specified entity in
Microsoft Azure storage, or insert it if it does not exist. |
void |
TableBatchOperation.insertOrReplace(TableEntity entity)
Adds a table operation to insert or replace the specified entity to the batch operation.
|
static TableOperation |
TableOperation.merge(TableEntity entity)
A static factory method returning a
TableOperation instance to merge the specified table entity into
Microsoft Azure storage. |
void |
TableBatchOperation.merge(TableEntity entity)
Adds a table operation to merge the specified entity to the batch operation.
|
static TableOperation |
TableOperation.replace(TableEntity entity)
A static factory method returning a
TableOperation instance to replace the specified table entity. |
void |
TableBatchOperation.replace(TableEntity entity)
Adds a table operation to replace the specified entity to the batch operation.
|
protected void |
TableOperation.setEntity(TableEntity entity)
Reserved for internal use.
|
protected void |
TableResult.updateResultObject(TableEntity ent)
Reserved for internal use.
|
Modifier and Type | Method and Description |
---|---|
static TableOperation |
TableOperation.retrieve(String partitionKey,
String rowKey,
Class<? extends TableEntity> clazzType)
A static factory method returning a
TableOperation instance to retrieve the specified table entity and
return it as the specified type. |
void |
TableBatchOperation.retrieve(String partitionKey,
String rowKey,
Class<? extends TableEntity> clazzType)
Adds a table operation to retrieve an entity of the specified class type with the specified PartitionKey and
RowKey to the batch operation.
|
protected void |
QueryTableOperation.setClazzType(Class<? extends TableEntity> clazzType)
Reserved for internal use.
|
Constructor and Description |
---|
TableOperation(TableEntity entity,
com.microsoft.azure.storage.table.TableOperationType opType)
Reserved for internal use.
|
TableOperation(TableEntity entity,
com.microsoft.azure.storage.table.TableOperationType opType,
boolean echoContent)
Reserved for internal use.
|
Copyright © 2019. All rights reserved.