Example usage for org.apache.lucene.document FieldType subclass-usage

List of usage examples for org.apache.lucene.document FieldType subclass-usage

Introduction

In this page you can find the example usage for org.apache.lucene.document FieldType subclass-usage.

Usage

From source file org.apache.solr.legacy.LegacyFieldType.java

/**
 * FieldType extension with support for legacy numerics
 * @deprecated Please switch to {@link org.apache.lucene.index.PointValues} instead
 */
@Deprecated
public final class LegacyFieldType extends FieldType {

From source file org.apache.solr.schema.AbstractSpatialFieldType.java

/**
 * Abstract base class for Solr FieldTypes based on a Lucene 4 {@link SpatialStrategy}.
 *
 * @lucene.experimental
 */
public abstract class AbstractSpatialFieldType<T extends SpatialStrategy> extends FieldType

From source file org.apache.solr.schema.BinaryField.java

public class BinaryField extends FieldType {

    private String toBase64String(ByteBuffer buf) {
        return Base64.byteArrayToBase64(buf.array(), buf.position(), buf.limit() - buf.position());
    }

From source file org.apache.solr.schema.CompressableField.java

/** <code>CompressableField</code> is an abstract field type which enables a
 * field to be compressed (by specifying <code>compressed="true"</code> at the
 * field definition level) and provides optional support for specifying a
 * threshold at which compression is enabled.
 *
 * Optional settings:

From source file org.apache.solr.schema.CurrencyFieldType.java

/**
 * Field type for support of monetary values.
 * <p>
 * See <a href="http://wiki.apache.org/solr/CurrencyField">http://wiki.apache.org/solr/CurrencyField</a>
 */
public class CurrencyFieldType extends FieldType implements SchemaAware, ResourceLoaderAware {

From source file org.apache.solr.schema.MultiPointDocValuesField.java

/**
 * A spatial FieldType for storing a variable number of points in DocValues. It
 * is expressly for sorting / boosting.
 * <p/>
 * I wanted to extend {@link AbstractSpatialFieldType} but createField() is
 * final, which is unfortunate to get around the multi-value limitations in Solr

From source file org.apache.solr.schema.PreAnalyzedField.java

/**
 * Pre-analyzed field type provides a way to index a serialized token stream,
 * optionally with an independent stored value of a field.
 */
public class PreAnalyzedField extends FieldType {
    private static final Logger LOG = LoggerFactory.getLogger(PreAnalyzedField.class);

From source file org.codelibs.elasticsearch.index.mapper.MappedFieldType.java

/**
 * This defines the core properties and functions to operate on a field.
 */
public abstract class MappedFieldType extends FieldType {

    private String name;

From source file org.elasticsearch.index.mapper.MappedFieldType.java

/**
 * This defines the core properties and functions to operate on a field.
 */
public abstract class MappedFieldType extends FieldType {

    private static final DeprecationLogger DEPRECATION_LOGGER = new DeprecationLogger(

From source file suonos.lucene.fields.IndexedFieldType.java

public class IndexedFieldType extends FieldType {
    /**
     * The Java value type.
     */
    private Class<?> javaType;