public enum IndexHint extends Enum<IndexHint>
| Enum Constant and Description |
|---|
DO_NOT_INDEX
Do not index the element in the search index.
|
INDEX
Index the element in the search index.
|
| Modifier and Type | Method and Description |
|---|---|
static IndexHint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexHint INDEX
public static final IndexHint DO_NOT_INDEX
public static IndexHint[] values()
for (IndexHint c : IndexHint.values()) System.out.println(c);
public static IndexHint 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 © 2016–2021 MWARE SOLUTIONS. All rights reserved.