public enum AutomaticIndexingSynchronizationStrategyName extends Enum<AutomaticIndexingSynchronizationStrategyName>
| Enum Constant and Description |
|---|
COMMITTED
A strategy that waits for indexing requests to be committed.
|
QUEUED
A strategy that only waits for indexing requests to be queued in the backend.
|
SEARCHABLE
A strategy that waits for indexing requests to be committed and forces index refreshes.
|
| Modifier and Type | Method and Description |
|---|---|
static AutomaticIndexingSynchronizationStrategyName |
of(String value) |
static AutomaticIndexingSynchronizationStrategyName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutomaticIndexingSynchronizationStrategyName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutomaticIndexingSynchronizationStrategyName QUEUED
See the reference documentation for details.
public static final AutomaticIndexingSynchronizationStrategyName COMMITTED
See the reference documentation for details.
public static final AutomaticIndexingSynchronizationStrategyName SEARCHABLE
See the reference documentation for details.
public static AutomaticIndexingSynchronizationStrategyName[] values()
for (AutomaticIndexingSynchronizationStrategyName c : AutomaticIndexingSynchronizationStrategyName.values()) System.out.println(c);
public static AutomaticIndexingSynchronizationStrategyName 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 static AutomaticIndexingSynchronizationStrategyName of(String value)
Copyright © 2006-2020 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.