📄 indextype.java
字号:
/**
*
*/
package org.geotools.data.shapefile.indexed;
import org.geotools.data.shapefile.ShpFileType;
/**
* Enumerates the different types of Shapefile geometry indices there are.
*
* @author jesse
*/
public enum IndexType {
/**
* Don't use indexing
*/
NONE(null),
/**
* This is an RTree
*/
EXPERIMENTAL_UNSUPPORTED_GRX(ShpFileType.GRX),
/**
* The same index as mapserver. Its the most reliable and is the default
*/
QIX(ShpFileType.QIX);
public final ShpFileType shpFileType;
private IndexType(ShpFileType shpFileType) {
this.shpFileType = shpFileType;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -