Package io.deephaven.internal
Enum DeephavenLoggerFactory
- java.lang.Object
-
- java.lang.Enum<DeephavenLoggerFactory>
-
- io.deephaven.internal.DeephavenLoggerFactory
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DeephavenLoggerFactory>,org.slf4j.ILoggerFactory
public enum DeephavenLoggerFactory extends java.lang.Enum<DeephavenLoggerFactory> implements org.slf4j.ILoggerFactory
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.slf4j.LoggergetLogger(java.lang.String name)static DeephavenLoggerFactoryvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DeephavenLoggerFactory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANCE
public static final DeephavenLoggerFactory INSTANCE
-
-
Method Detail
-
values
public static DeephavenLoggerFactory[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DeephavenLoggerFactory c : DeephavenLoggerFactory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeephavenLoggerFactory valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getLogger
public final org.slf4j.Logger getLogger(java.lang.String name)
- Specified by:
getLoggerin interfaceorg.slf4j.ILoggerFactory
-
-