public class PyIsamMap.PyKeyDispatcher extends IsamMap.KeyDispatcher
keyIndex
Constructor and Description |
---|
PyKeyDispatcher(int keyIndex)
Create instance of PyKeyDispatcher.
|
Modifier and Type | Method and Description |
---|---|
<K2 extends java.lang.Comparable<K2>> |
between(K2 startKey,
K2 endKey)
Select records where lookup key is in interval.
|
PyIsamSubMap<java.lang.Integer,R> |
betweenInt(int startKey,
int endKey)
Select records where lookup key is in interval.
|
PyIsamSubMap<java.lang.String,R> |
betweenString(java.lang.String startKey,
java.lang.String endKey)
Select records where lookup key is in interval.
|
<K2 extends java.lang.Comparable<K2>> |
is(K2 key)
Select records where lookup key is value.
|
PyIsamSubMap<java.lang.Integer,R> |
isInt(int key)
Select records where lookup key is value.
|
PyIsamSubMap<java.lang.String,R> |
isString(java.lang.String key)
Select records where lookup key is value.
|
public PyKeyDispatcher(int keyIndex)
keyIndex
- key indexpublic <K2 extends java.lang.Comparable<K2>> PyIsamSubMap<K2,R> is(K2 key)
is
in class IsamMap.KeyDispatcher
K2
- key typekey
- lookup keypublic PyIsamSubMap<java.lang.Integer,R> isInt(int key)
key
- lookup keypublic PyIsamSubMap<java.lang.String,R> isString(java.lang.String key)
key
- lookup keypublic <K2 extends java.lang.Comparable<K2>> PyIsamSubMap<K2,R> between(K2 startKey, K2 endKey)
between
in class IsamMap.KeyDispatcher
K2
- key typestartKey
- start lookup key intervalendKey
- end lookup key intervalpublic PyIsamSubMap<java.lang.Integer,R> betweenInt(int startKey, int endKey)
startKey
- start lookup key intervalendKey
- end lookup key intervalpublic PyIsamSubMap<java.lang.String,R> betweenString(java.lang.String startKey, java.lang.String endKey)
startKey
- start lookup key intervalendKey
- end lookup key interval