public enum ConfigurationPropertyCheckingStrategyName extends Enum<ConfigurationPropertyCheckingStrategyName>
| Enum Constant and Description |
|---|
IGNORE
Ignore the result of configuration property checking.
|
WARN
Log a warning if a Hibernate Search configuration property is set, but never used.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getExternalRepresentation() |
static ConfigurationPropertyCheckingStrategyName |
of(String value) |
static ConfigurationPropertyCheckingStrategyName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationPropertyCheckingStrategyName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationPropertyCheckingStrategyName IGNORE
public static final ConfigurationPropertyCheckingStrategyName WARN
public static ConfigurationPropertyCheckingStrategyName[] values()
for (ConfigurationPropertyCheckingStrategyName c : ConfigurationPropertyCheckingStrategyName.values()) System.out.println(c);
public static ConfigurationPropertyCheckingStrategyName 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 ConfigurationPropertyCheckingStrategyName of(String value)
public String getExternalRepresentation()
Copyright © 2006-2020 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.