public static enum IndexManager.IndexStatus extends Enum<IndexManager.IndexStatus>
Enum Constant and Description |
---|
DISABLED
Inactive index which has been disabled or shut down.
|
ENABLED
Active index being considered/used by the query engine when executing queries
|
NON_EXISTENT
Index which does not exist
|
REINDEXING
Active index which is re-indexing its data but is not being used by the query engine
|
Modifier and Type | Method and Description |
---|---|
static IndexManager.IndexStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexManager.IndexStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexManager.IndexStatus ENABLED
public static final IndexManager.IndexStatus REINDEXING
public static final IndexManager.IndexStatus DISABLED
public static final IndexManager.IndexStatus NON_EXISTENT
public static IndexManager.IndexStatus[] values()
for (IndexManager.IndexStatus c : IndexManager.IndexStatus.values()) System.out.println(c);
public static IndexManager.IndexStatus 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 © 2008–2016 JBoss, a division of Red Hat. All rights reserved.