Package net.sf.tweety.commons
Enum TweetyConfiguration.LogLevel
- java.lang.Object
-
- java.lang.Enum<TweetyConfiguration.LogLevel>
-
- net.sf.tweety.commons.TweetyConfiguration.LogLevel
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TweetyConfiguration.LogLevel>
,java.lang.constant.Constable
- Enclosing interface:
- TweetyConfiguration
public static enum TweetyConfiguration.LogLevel extends java.lang.Enum<TweetyConfiguration.LogLevel>
The possible log levels.- Author:
- Matthias Thimm
-
-
Method Summary
Modifier and Type Method Description static TweetyConfiguration.LogLevel
getLogLevel(java.lang.String s)
int
levelAsInt()
java.lang.String
levelAsString()
static TweetyConfiguration.LogLevel
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TweetyConfiguration.LogLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRACE
public static final TweetyConfiguration.LogLevel TRACE
-
DEBUG
public static final TweetyConfiguration.LogLevel DEBUG
-
INFO
public static final TweetyConfiguration.LogLevel INFO
-
WARN
public static final TweetyConfiguration.LogLevel WARN
-
ERROR
public static final TweetyConfiguration.LogLevel ERROR
-
FATAL
public static final TweetyConfiguration.LogLevel FATAL
-
-
Method Detail
-
values
public static TweetyConfiguration.LogLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TweetyConfiguration.LogLevel 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
-
levelAsInt
public int levelAsInt()
-
levelAsString
public java.lang.String levelAsString()
-
getLogLevel
public static TweetyConfiguration.LogLevel getLogLevel(java.lang.String s)
-
-