1 | /* |
2 | * Copyright 2004-2014 H2 Group. Multiple-Licensed under the MPL 2.0, |
3 | * and the EPL 1.0 (http://h2database.com/html/license.html). |
4 | * Initial Developer: H2 Group |
5 | */ |
6 | package org.h2.fulltext; |
7 | |
8 | /** |
9 | * The settings of one full text search index. |
10 | */ |
11 | public class IndexInfo { |
12 | |
13 | /** |
14 | * The index id. |
15 | */ |
16 | protected int id; |
17 | |
18 | /** |
19 | * The schema name. |
20 | */ |
21 | protected String schema; |
22 | |
23 | /** |
24 | * The table name. |
25 | */ |
26 | protected String table; |
27 | |
28 | /** |
29 | * The column indexes of the key columns. |
30 | */ |
31 | protected int[] keys; |
32 | |
33 | /** |
34 | * The column indexes of the index columns. |
35 | */ |
36 | protected int[] indexColumns; |
37 | |
38 | /** |
39 | * The column names. |
40 | */ |
41 | protected String[] columns; |
42 | } |