public enum DocValuesType extends Enum<DocValuesType>
Enum Constant and Description |
---|
BINARY
A per-document byte[].
|
NONE
No doc values for this field.
|
NUMERIC
A per-document Number
|
SORTED
A pre-sorted byte[].
|
SORTED_NUMERIC
A pre-sorted Number[].
|
SORTED_SET
A pre-sorted Set<byte[]>.
|
Modifier and Type | Method and Description |
---|---|
static DocValuesType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocValuesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocValuesType NONE
public static final DocValuesType NUMERIC
public static final DocValuesType BINARY
public static final DocValuesType SORTED
<= 32766
bytes.public static final DocValuesType SORTED_NUMERIC
Long.compare(long, long)
.public static final DocValuesType SORTED_SET
<= 32766
bytes.public static DocValuesType[] values()
for (DocValuesType c : DocValuesType.values()) System.out.println(c);
public static DocValuesType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2000-2019 Apache Software Foundation. All Rights Reserved.