@Retention(value=RUNTIME) @Target(value=METHOD) @Documented public @interface StoreAs
TableEntity
that uses reflection-based serialization and deserialization. Note
that the names "PartitionKey", "RowKey", "Timestamp", and "Etag" are reserved and will be ignored if set with the
@StoreAs
annotation.
Example:
@StoreAs(name = "EntityPropertyName")
public String getObjectPropertyName() { ... }
@StoreAs(name = "EntityPropertyName")
public void setObjectPropertyName(String name) { ... }
This example shows how the methods that would get and set an entity property named ObjectPropertyName in the
default case can be annotated to get and set an entity property named EntityPropertyName. See the
documentation for TableServiceEntity
for more information on using reflection-based serialization and
deserialization.
Ignore
public abstract String name
Copyright © 2019. All rights reserved.