Package com.atlassian.confluence.it.rpc
Enum RpcLogDestination
- java.lang.Object
-
- java.lang.Enum<RpcLogDestination>
-
- com.atlassian.confluence.it.rpc.RpcLogDestination
-
- All Implemented Interfaces:
Serializable
,Comparable<RpcLogDestination>
public enum RpcLogDestination extends Enum<RpcLogDestination>
The destinations to which log messages can be sent.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEBUG
ERROR
INFO
SYSTEM_ERR
SYSTEM_OUT
WARN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
asString()
The string form of the log level.static RpcLogDestination
valueOf(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.
-
-
-
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(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
asString
public String asString()
The string form of the log level.
-
-