public enum LogCategory extends Enum<LogCategory>
LoggerFactory.make(LogCategory)
.Enum Constant and Description |
---|
INFOSTREAM_LOGGER_CATEGORY
This is the category of the Logger used to print out the Lucene infostream.
|
QUERY
Category for logging executed Lucene queries.
|
Modifier and Type | Method and Description |
---|---|
String |
getName() |
static LogCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogCategory QUERY
public static final LogCategory INFOSTREAM_LOGGER_CATEGORY
org.hibernate.search.backend.configuration.impl.IndexWriterSetting#INFOSTREAM
needs to be enabled on the index.IndexWriterSetting.INFOSTREAM
public static LogCategory[] values()
for (LogCategory c : LogCategory.values()) System.out.println(c);
public static LogCategory 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 String getName()
Copyright © 2006-2017 Red Hat, Inc. All Rights Reserved