Uses of Enum Class
org.apache.lucene.document.column.Column.Density
Packages that use Column.Density
-
Uses of Column.Density in org.apache.lucene.document.column
Methods in org.apache.lucene.document.column that return Column.DensityModifier and TypeMethodDescriptionColumn.density()Returns the density of this column (whether every doc has a value).static Column.DensityReturns the enum constant of this class with the specified name.static Column.Density[]Column.Density.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.apache.lucene.document.column with parameters of type Column.DensityModifierConstructorDescriptionprotectedBinaryColumn(String name, IndexableFieldType fieldType, Column.Density density) Creates a BinaryColumn with the given field name, type, and density.protectedColumn(String name, IndexableFieldType fieldType, Column.Density density) Creates a Column with the given field name, type, and density.protectedDictionaryColumn(String name, IndexableFieldType fieldType, Column.Density density, List<BytesRef> dictionary) Creates a DictionaryColumn.protectedLongColumn(String name, IndexableFieldType fieldType, Column.Density density) Creates a LongColumn withLongColumn.NumericKind.LONG.protectedLongColumn(String name, IndexableFieldType fieldType, Column.Density density, LongColumn.NumericKind numericKind) Creates a LongColumn with the given numeric interpretation.protectedTokenStreamColumn(String name, IndexableFieldType fieldType, Column.Density density) Creates a TokenStreamColumn with the given field name, type, and density.protectedVectorColumn(String name, IndexableFieldType fieldType, Column.Density density) Creates a VectorColumn with the given field name, type, and density.