public class BinaryTable<T extends BinaryTable<T>> extends Object
| Constructor and Description | 
|---|
BinaryTable()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
addPropertyChangeListener(PropertyChangeListener listener)
Adds a property change listener 
 | 
Integer | 
batchSize()
For DB inserts, the batch size determines how many inserts are batched
 together. 
 | 
T | 
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. 
 | 
T | 
dataColumn(Map value)
A database column to hold cache entry data. 
 | 
T | 
dataColumn(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. 
 | 
T | 
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. 
 | 
T | 
idColumn(Map value)
A database column to hold cache entry ids. 
 | 
T | 
idColumn(String key,
        Object value)
A database column to hold cache entry ids. 
 | 
String | 
prefix()
The prefix for the database table name. 
 | 
T | 
prefix(String value)
The prefix for the database table name. 
 | 
void | 
removePropertyChangeListener(PropertyChangeListener listener)
Removes a property change listener 
 | 
Map | 
timestampColumn()
A database column to hold cache entry timestamps. 
 | 
T | 
timestampColumn(Map value)
A database column to hold cache entry timestamps. 
 | 
T | 
timestampColumn(String key,
               Object value)
A database column to hold cache entry timestamps. 
 | 
public String getKey()
public void addPropertyChangeListener(PropertyChangeListener listener)
public void removePropertyChangeListener(PropertyChangeListener listener)
public Integer batchSize()
public T batchSize(Integer value)
public Map dataColumn()
public T dataColumn(String key, Object value)
public Integer fetchSize()
public T fetchSize(Integer value)
public Map idColumn()
public String prefix()
public Map timestampColumn()
public T timestampColumn(Map value)
Copyright © 2018 JBoss by Red Hat. All rights reserved.