01: /*
02: * Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
03: * (http://h2database.com/html/license.html).
04: * Initial Developer: H2 Group
05: */
06: package org.h2.index;
07:
08: import org.h2.value.Value;
09:
10: /**
11: * An index entry of a linear hash index.
12: */
13: public class LinearHashEntry {
14:
15: // private LinearHashEntry(int home, int hash, Value key, int value) {
16: // this.home = home;
17: // this.hash = hash;
18: // this.key = key;
19: // this.value = value;
20: // }
21:
22: public int home;
23: public int hash;
24: public Value key;
25: public int value;
26:
27: }
|