public enum IndexerFieldVersion extends Enum<IndexerFieldVersion>
Enum Constant and Description |
---|
V1
The 1.x line.
|
V2
The 2.x line.
|
V3
The 3.x line.
|
V4
The 4.x line.
|
Modifier and Type | Method and Description |
---|---|
static IndexerFieldVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexerFieldVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexerFieldVersion V1
public static final IndexerFieldVersion V2
public static final IndexerFieldVersion V3
public static final IndexerFieldVersion V4
public static IndexerFieldVersion[] values()
for (IndexerFieldVersion c : IndexerFieldVersion.values()) System.out.println(c);
public static IndexerFieldVersion 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 © 2002–2017 The Apache Software Foundation. All rights reserved.