All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tinygroup.fulltext.field.StoreField Maven / Gradle / Ivy

The newest version!
package org.tinygroup.fulltext.field;

/**
 * 存储字段
 * @author yancheng11334
 *
 * @param 
 */
@SuppressWarnings("rawtypes")
public interface StoreField extends Field{

	/**
	 * 该字段是否需要索引
	 * @return
	 */
	public boolean isIndexed();
	
	/**
	 * 该字段是否需要存储
	 * @return
	 */
	public boolean isStored();
	
	/**
	 * 该字段是否需要分词
	 * @return
	 */
	public boolean isTokenized();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy