net.citrusleaf
Enum CitrusleafClient.ClLogLevel

java.lang.Object
  extended by java.lang.Enum<CitrusleafClient.ClLogLevel>
      extended by net.citrusleaf.CitrusleafClient.ClLogLevel
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CitrusleafClient.ClLogLevel>
Enclosing class:
CitrusleafClient

public static enum CitrusleafClient.ClLogLevel
extends java.lang.Enum<CitrusleafClient.ClLogLevel>

Log escalation level.


Enum Constant Summary
DEBUG
          Message used for debugging purposes.
ERROR
          Error condition has occurred.
INFO
          Normal information message.
VERBOSE
          Detailed message also used for debugging purposes.
WARN
          Unusual non-error condition has occurred.
 
Method Summary
static CitrusleafClient.ClLogLevel valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CitrusleafClient.ClLogLevel[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ERROR

public static final CitrusleafClient.ClLogLevel ERROR
Error condition has occurred.


WARN

public static final CitrusleafClient.ClLogLevel WARN
Unusual non-error condition has occurred.


INFO

public static final CitrusleafClient.ClLogLevel INFO
Normal information message.


DEBUG

public static final CitrusleafClient.ClLogLevel DEBUG
Message used for debugging purposes.


VERBOSE

public static final CitrusleafClient.ClLogLevel VERBOSE
Detailed message also used for debugging purposes.

Method Detail

values

public static CitrusleafClient.ClLogLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (CitrusleafClient.ClLogLevel c : CitrusleafClient.ClLogLevel.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static CitrusleafClient.ClLogLevel 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 name
java.lang.NullPointerException - if the argument is null