public static enum FieldInfo.DocValuesType extends Enum<FieldInfo.DocValuesType>
Enum Constant and Description |
---|
BINARY
A per-document byte[].
|
NUMERIC
A per-document Number
|
SORTED
A pre-sorted byte[].
|
SORTED_SET
A pre-sorted Set<byte[]>.
|
Modifier and Type | Method and Description |
---|---|
static FieldInfo.DocValuesType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldInfo.DocValuesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldInfo.DocValuesType NUMERIC
public static final FieldInfo.DocValuesType BINARY
public static final FieldInfo.DocValuesType SORTED
public static final FieldInfo.DocValuesType SORTED_SET
public static FieldInfo.DocValuesType[] values()
for (FieldInfo.DocValuesType c : FieldInfo.DocValuesType.values()) System.out.println(c);
public static FieldInfo.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-2013 Apache Software Foundation. All Rights Reserved.