public enum HibernateOrmAutomaticIndexingSynchronizationStrategyName extends Enum<HibernateOrmAutomaticIndexingSynchronizationStrategyName>
| 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 HibernateOrmAutomaticIndexingSynchronizationStrategyName |
of(String value) |
static HibernateOrmAutomaticIndexingSynchronizationStrategyName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HibernateOrmAutomaticIndexingSynchronizationStrategyName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HibernateOrmAutomaticIndexingSynchronizationStrategyName QUEUED
See the reference documentation for details.
public static final HibernateOrmAutomaticIndexingSynchronizationStrategyName COMMITTED
See the reference documentation for details.
public static final HibernateOrmAutomaticIndexingSynchronizationStrategyName SEARCHABLE
See the reference documentation for details.
public static HibernateOrmAutomaticIndexingSynchronizationStrategyName[] values()
for (HibernateOrmAutomaticIndexingSynchronizationStrategyName c : HibernateOrmAutomaticIndexingSynchronizationStrategyName.values()) System.out.println(c);
public static HibernateOrmAutomaticIndexingSynchronizationStrategyName 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 HibernateOrmAutomaticIndexingSynchronizationStrategyName of(String value)
Copyright © 2006-2019 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.