Package com.luciad
Enum Class LogLevel
- All Implemented Interfaces:
Serializable
,Comparable<LogLevel>
,Constable
Various levels for logging messages.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates information of use for figuring out a problem.Indicates a problem from which no recovery is possible.Indicates information of general interest.Indicates extremely detailed information that is probably only useful to the maintainer of the code.Indicates a problem from which we can recover. -
Method Summary
-
Enum Constant Details
-
Error
Indicates a problem from which no recovery is possible. -
Warning
Indicates a problem from which we can recover.Recovery could be to give up whatever we attempted.
-
Info
Indicates information of general interest. -
Debug
Indicates information of use for figuring out a problem. -
Trace
Indicates extremely detailed information that is probably only useful to the maintainer of the code.
-
-
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
-