public enum IndexUpdateMode extends Enum<IndexUpdateMode>
| Enum Constant and Description |
|---|
IUM_ASYNC_INDEX
异步更新索引。
|
IUM_SYNC_INDEX
同步更新索引
|
| Modifier and Type | Method and Description |
|---|---|
static IndexUpdateMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexUpdateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexUpdateMode IUM_ASYNC_INDEX
public static final IndexUpdateMode IUM_SYNC_INDEX
public static IndexUpdateMode[] values()
for (IndexUpdateMode c : IndexUpdateMode.values()) System.out.println(c);
public static IndexUpdateMode 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 © 2024. All Rights Reserved.