public class BinaryTable<T extends BinaryTable> extends Object
| Constructor and Description |
|---|
BinaryTable() |
| Modifier and Type | Method and Description |
|---|---|
Integer |
batchSize()
For DB inserts, the batch size determines how many inserts are batched together.
|
BinaryTable |
batchSize(Integer value)
For DB inserts, the batch size determines how many inserts are batched together.
|
Map |
dataColumn()
A database column to hold cache entry data.
|
BinaryTable |
dataColumn(Map value)
A database column to hold cache entry data.
|
BinaryTable |
dataColumnEntry(String key,
Object value)
A database column to hold cache entry data.
|
Integer |
fetchSize()
For DB queries, the fetch size will be used to set the fetch size on ResultSets.
|
BinaryTable |
fetchSize(Integer value)
For DB queries, the fetch size will be used to set the fetch size on ResultSets.
|
String |
getKey() |
Map |
idColumn()
A database column to hold cache entry ids.
|
BinaryTable |
idColumn(Map value)
A database column to hold cache entry ids.
|
BinaryTable |
idColumnEntry(String key,
Object value)
A database column to hold cache entry ids.
|
String |
prefix()
The prefix for the database table name.
|
BinaryTable |
prefix(String value)
The prefix for the database table name.
|
Map |
timestampColumn()
A database column to hold cache entry timestamps.
|
BinaryTable |
timestampColumn(Map value)
A database column to hold cache entry timestamps.
|
BinaryTable |
timestampColumnEntry(String key,
Object value)
A database column to hold cache entry timestamps.
|
public String getKey()
public Integer batchSize()
public BinaryTable batchSize(Integer value)
public Map dataColumn()
public BinaryTable dataColumn(Map value)
public BinaryTable dataColumnEntry(String key, Object value)
public Integer fetchSize()
public BinaryTable fetchSize(Integer value)
public Map idColumn()
public BinaryTable idColumn(Map value)
public BinaryTable idColumnEntry(String key, Object value)
public String prefix()
public BinaryTable prefix(String value)
public Map timestampColumn()
public BinaryTable timestampColumn(Map value)
public BinaryTable timestampColumnEntry(String key, Object value)
Copyright © 2015 JBoss by Red Hat. All rights reserved.