Package com.tailf.maapi
Enum Class Maapi.Verbosity
- All Implemented Interfaces:
Serializable
,Comparable<Maapi.Verbosity>
,Constable
- Enclosing class:
- Maapi
To be used in:
Maapi.reportProgress(int,Verbosity,String)
Maapi.reportProgress(int,Verbosity,String,String)
Maapi.reportProgressStart(int,Verbosity,String,String)
Maapi.reportNedProgress(Verbosity,String,String,String)
Maapi.reportNedProgressStart(Verbosity,String,String,String)
Maapi.reportServiceProgress(int,Verbosity,String,ConfPath)
Maapi.reportServiceProgress(int,Verbosity,String,String,ConfPath)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe highest verbosity level.Designates informational messages that highlight the progress of the application at coarse-granined level.Designates detailed informational messages from the application.Designates very detailed informational messages from the application and its internal operations. -
Method Summary
Modifier and TypeMethodDescriptionstatic Maapi.Verbosity
Returns the enum constant of this class with the specified name.static Maapi.Verbosity[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
NORMAL
Designates informational messages that highlight the progress of the application at coarse-granined level. Used mainly to give a high level overview. This is the default and the lowest verbosity level. -
VERBOSE
Designates detailed informational messages from the application. -
VERY_VERBOSE
Designates very detailed informational messages from the application and its internal operations. -
DEBUG
The highest verbosity level. Designates fine-grained informational messages usable for debugging the application and its internal operations.
-
-
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
-