public enum SecondaryIndexType extends Enum<SecondaryIndexType>
| Enum Constant and Description |
|---|
LUCENE |
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue() |
static SecondaryIndexType |
of(byte indexType) |
static SecondaryIndexType |
of(String indexType) |
static SecondaryIndexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecondaryIndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecondaryIndexType LUCENE
public static SecondaryIndexType[] values()
for (SecondaryIndexType c : SecondaryIndexType.values()) System.out.println(c);
public static SecondaryIndexType 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 nullpublic byte getValue()
public static SecondaryIndexType of(byte indexType)
public static SecondaryIndexType of(String indexType)
Copyright © 2024 The Apache Software Foundation. All rights reserved.