public enum IndexingDirective extends Enum<IndexingDirective>
| Enum Constant and Description |
|---|
DEFAULT
Use any pre-defined/pre-configured defaults.
|
EXCLUDE
Do not index the resource.
|
INCLUDE
Index the resource.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static IndexingDirective |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexingDirective[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexingDirective DEFAULT
public static final IndexingDirective INCLUDE
public static final IndexingDirective EXCLUDE
public static IndexingDirective[] values()
for (IndexingDirective c : IndexingDirective.values()) System.out.println(c);
public static IndexingDirective 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 String toString()
toString in class Enum<IndexingDirective>Copyright © 2019. All rights reserved.