Package org.apache.lucene.geo
Enum Tessellator.State
- java.lang.Object
-
- java.lang.Enum<Tessellator.State>
-
- org.apache.lucene.geo.Tessellator.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Tessellator.State>
- Enclosing class:
- Tessellator
private static enum Tessellator.State extends java.lang.Enum<Tessellator.State>
state of the tessellated split - avoids recursion
-
-
Constructor Summary
Constructors Modifier Constructor Description private
State()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Tessellator.State
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Tessellator.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INIT
public static final Tessellator.State INIT
-
CURE
public static final Tessellator.State CURE
-
SPLIT
public static final Tessellator.State SPLIT
-
-
Method Detail
-
values
public static Tessellator.State[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Tessellator.State c : Tessellator.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Tessellator.State valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-