1 package org.apache.lucene.index; 2 3 18 19 25 final class IndexFileNames { 26 27 28 static final String SEGMENTS = "segments"; 29 30 31 static final String DELETABLE = "deletable"; 32 33 39 static final String INDEX_EXTENSIONS[] = new String [] { 40 "cfs", "fnm", "fdx", "fdt", "tii", "tis", "frq", "prx", "del", 41 "tvx", "tvd", "tvf", "tvp" }; 42 43 44 static final String COMPOUND_EXTENSIONS[] = new String [] { 45 "fnm", "frq", "prx", "fdx", "fdt", "tii", "tis" 46 }; 47 48 49 static final String VECTOR_EXTENSIONS[] = new String [] { 50 "tvx", "tvd", "tvf" 51 }; 52 53 } 54 | Popular Tags |