public static enum Spark.LogLevel extends java.lang.Enum<Spark.LogLevel>
Enum Constant and Description |
---|
ALL |
DEBUG |
ERROR |
INFO |
NO |
VERBOSE |
WARNING |
Modifier and Type | Method and Description |
---|---|
static Spark.LogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Spark.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Spark.LogLevel NO
public static final Spark.LogLevel ERROR
public static final Spark.LogLevel WARNING
public static final Spark.LogLevel INFO
public static final Spark.LogLevel DEBUG
public static final Spark.LogLevel VERBOSE
public static final Spark.LogLevel ALL
public static Spark.LogLevel[] values()
for (Spark.LogLevel c : Spark.LogLevel.values()) System.out.println(c);
public static Spark.LogLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null