Go to the source code of this file.
Enumerations | |
enum | SearchEndpoint { SEARCH_UNBOUNDED_LOWER = '-', SEARCH_OPEN_LOWER = '(', SEARCH_CLOSED_LOWER = '[', SEARCH_OPEN_UPPER = ')', SEARCH_CLOSED_UPPER = ']', SEARCH_UNBOUNDED_UPPER = '+' } |
SearchEndpoint defines directives used to control a search in an ordered associative data structure such as a BTree. More... |
enum SearchEndpoint |
SearchEndpoint defines directives used to control a search in an ordered associative data structure such as a BTree.
An endpoint is associated with a particular key value.
NOTE jvs 23-Jan-2006: any changes made here must be applied to net.sf.farrago.query.FennelSearchEndpoint as well.
Definition at line 41 of file SearchEndpoint.h.
00042 { 00047 SEARCH_UNBOUNDED_LOWER = '-', 00048 00052 SEARCH_OPEN_LOWER = '(', 00053 00057 SEARCH_CLOSED_LOWER = '[', 00058 00062 SEARCH_OPEN_UPPER = ')', 00063 00067 SEARCH_CLOSED_UPPER = ']', 00068 00073 SEARCH_UNBOUNDED_UPPER = '+', 00074 };