public enum IndexMode extends Enum<IndexMode>
Enum Constant and Description |
---|
ASYNCHRONOUS
Asynchronously
|
SYNCHRONOUS
Synchronously
|
UNINDEXED
Unindexed
|
Modifier and Type | Method and Description |
---|---|
static IndexMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexMode SYNCHRONOUS
public static final IndexMode ASYNCHRONOUS
public static final IndexMode UNINDEXED
public static IndexMode[] values()
for (IndexMode c : IndexMode.values()) System.out.println(c);
public static IndexMode 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–2017 Alfresco Software. All rights reserved.