com.atlassian.confluence.it.rpc
Enum RpcLogDestination

java.lang.Object
  extended by java.lang.Enum<RpcLogDestination>
      extended by com.atlassian.confluence.it.rpc.RpcLogDestination
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RpcLogDestination>

public enum RpcLogDestination
extends java.lang.Enum<RpcLogDestination>

The destinations to which log messages can be sent.


Enum Constant Summary
DEBUG
           
ERROR
           
INFO
           
SYSTEM_ERR
           
SYSTEM_OUT
           
WARN
           
 
Method Summary
 java.lang.String asString()
          The string form of the log level.
static RpcLogDestination valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RpcLogDestination[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INFO

public static final RpcLogDestination INFO

DEBUG

public static final RpcLogDestination DEBUG

WARN

public static final RpcLogDestination WARN

ERROR

public static final RpcLogDestination ERROR

SYSTEM_OUT

public static final RpcLogDestination SYSTEM_OUT

SYSTEM_ERR

public static final RpcLogDestination SYSTEM_ERR
Method Detail

values

public static RpcLogDestination[] 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 (RpcLogDestination c : RpcLogDestination.values())
    System.out.println(c);

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

valueOf

public static RpcLogDestination 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

asString

public java.lang.String asString()
The string form of the log level.



Copyright © 2003-2014 Atlassian. All Rights Reserved.