|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IsamSource
Interface IsamSource represents an ISAM source.
Method Summary | ||
---|---|---|
void |
close()
Close ISAM source. |
|
|
create(T o)
Create record in ISAM source. |
|
|
delete(java.lang.Class<T> t,
Key<TK> k)
Delete record from ISAM source. |
|
|
read(java.lang.Class<T> t,
Key<TK> k)
Read record from ISAM source. |
|
|
readGE(java.lang.Class<T> t,
Key<TK> k)
Find all records greater than or equal key. |
|
|
readGT(java.lang.Class<T> t,
Key<TK> k)
Read all records greater than key. |
|
|
readLE(java.lang.Class<T> t,
Key<TK> k)
Read all records less than or equal key. |
|
|
readLT(java.lang.Class<T> t,
Key<TK> k)
Read all records less than key. |
|
|
update(T o)
Update record in ISAM source. |
Method Detail |
---|
<T,TK> T read(java.lang.Class<T> t, Key<TK> k) throws IsamException, RecordException
t
- type to readk
- key of record to read
IsamException
- if problem with ISAM source
RecordException
- if problem converting data<T> void create(T o) throws IsamException, RecordException
o
- object to create
IsamException
- if problem with ISAM source
RecordException
- if problem converting data<T> void update(T o) throws IsamException, RecordException
o
- object to update
IsamException
- if problem with ISAM source
RecordException
- if problem converting data<T,TK> void delete(java.lang.Class<T> t, Key<TK> k) throws IsamException, RecordException
t
- type to deletek
- key of record to delete
IsamException
- if problem with ISAM source
RecordException
- if problem converting datavoid close() throws IsamException
IsamException
- if problem with ISAM source<T,TK> IsamResult<T> readGE(java.lang.Class<T> t, Key<TK> k) throws IsamException, RecordException
t
- type to findk
- key to find
IsamException
- if problem with ISAM source
RecordException
- if problem converting data<T,TK> IsamResult<T> readGT(java.lang.Class<T> t, Key<TK> k) throws IsamException, RecordException
t
- type to findk
- key to find
IsamException
- if problem with ISAM source
RecordException
- if problem converting data<T,TK> IsamResult<T> readLE(java.lang.Class<T> t, Key<TK> k) throws IsamException, RecordException
t
- type to findk
- key to find
IsamException
- if problem with ISAM source
RecordException
- if problem converting data<T,TK> IsamResult<T> readLT(java.lang.Class<T> t, Key<TK> k) throws IsamException, RecordException
t
- type to findk
- key to find
IsamException
- if problem with ISAM source
RecordException
- if problem converting data
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |