| |
|
| biz.hammurapi.sql.metadata.IndexInfo
IndexInfo | public interface IndexInfo (Code) | | author: Pavel Vlasov version: $Revision: 1.1 $ |
Method Summary | |
String | getJavaName() | boolean | isEQ() | boolean | isGE() | boolean | isGT() | boolean | isLE() | boolean | isLT() true if this index shall be used to select rows with position in the index before the position specified by parameters. | boolean | isNE() | boolean | isOrdered() |
isEQ | boolean isEQ()(Code) | | true if this index shall be used to select rows with index columns equal to parameters |
isGE | boolean isGE()(Code) | | true if this index shall be used to select rows with index columns greater or equal to parameters |
isGT | boolean isGT()(Code) | | true if this index shall be used to select rows with index columns "greater" than parameters |
isLE | boolean isLE()(Code) | | true if this index shall be used to select rows with index columns "less" or equal to parameters |
isLT | boolean isLT()(Code) | | true if this index shall be used to select rows with position in the index before the position specified by parameters. |
isNE | boolean isNE()(Code) | | true if this index shall be used to select rows with index columns not equal to parameters |
isOrdered | boolean isOrdered()(Code) | | true if this index shall be used for ordered selects |
|
|
|