Package tv.hd3g.fflauncher.enums
Enum Class FFLogLevel
- All Implemented Interfaces:
Serializable,Comparable<FFLogLevel>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionShow everything, including debugging information.Show all errors, including ones which can be recovered from.Only show FATAL errors.Show informative messages during processing.Only show FATAL errors which could lead the process to crash, such as an assertion failure.Show nothing at all; be silent.Same as INFO, except more VERBOSE.Show all warnings and errors. -
Method Summary
Modifier and TypeMethodDescriptiontoString()static FFLogLevelReturns the enum constant of this class with the specified name.static FFLogLevel[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
QUIET
Show nothing at all; be silent. -
PANIC
Only show FATAL errors which could lead the process to crash, such as an assertion failure. This is not currently used for anything. -
FATAL
Only show FATAL errors. These are errors after which the process absolutely cannot continue. -
ERROR
Show all errors, including ones which can be recovered from. -
WARNING
Show all warnings and errors. Any message related to possibly incorrect or unexpected events will be shown. -
INFO
Show informative messages during processing. This is in addition to warnings and errors. This is the default value. -
VERBOSE
Same as INFO, except more VERBOSE. -
DEBUG
Show everything, including debugging information. -
TRACE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
toString
- Overrides:
toStringin classEnum<FFLogLevel>
-