public enum Indexed extends Enum<Indexed>
Enum Constant and Description |
---|
FALSE |
TRUE |
UNIQUE |
UNSPECIFIED |
Modifier and Type | Method and Description |
---|---|
static Indexed |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Indexed[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Indexed UNSPECIFIED
public static final Indexed TRUE
public static final Indexed FALSE
public static final Indexed UNIQUE
public static Indexed[] values()
for (Indexed c : Indexed.values()) System.out.println(c);
public static Indexed 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 © 2005–1970 Apache Software Foundation. All rights reserved.