Serializable, Comparable<Logger.LogLevels>public static enum Logger.LogLevels extends Enum<Logger.LogLevels>
| Enum Constant | Description |
|---|---|
Error |
|
FrameworkDebug |
|
FrameworkInformation |
|
TestDebug |
|
TestInformation |
| Modifier and Type | Method | Description |
|---|---|---|
int |
getNumVal() |
|
int |
getVal() |
|
static Logger.LogLevels |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Logger.LogLevels[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Logger.LogLevels FrameworkDebug
public static final Logger.LogLevels FrameworkInformation
public static final Logger.LogLevels TestDebug
public static final Logger.LogLevels TestInformation
public static final Logger.LogLevels Error
public static Logger.LogLevels[] values()
for (Logger.LogLevels c : Logger.LogLevels.values()) System.out.println(c);
public static Logger.LogLevels 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 int getVal()
public int getNumVal()
Copyright © 2017–2018 Team Controlium Committers. All rights reserved.