ch.qos.logback.classic.spi
Enum ThrowableDataPoint.ThrowableDataPointType
java.lang.Object
java.lang.Enum<ThrowableDataPoint.ThrowableDataPointType>
ch.qos.logback.classic.spi.ThrowableDataPoint.ThrowableDataPointType
- All Implemented Interfaces:
- Serializable, Comparable<ThrowableDataPoint.ThrowableDataPointType>
- Enclosing class:
- ThrowableDataPoint
public static enum ThrowableDataPoint.ThrowableDataPointType
- extends Enum<ThrowableDataPoint.ThrowableDataPointType>
RAW
public static final ThrowableDataPoint.ThrowableDataPointType RAW
STEP
public static final ThrowableDataPoint.ThrowableDataPointType STEP
values
public static ThrowableDataPoint.ThrowableDataPointType[] 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 (ThrowableDataPoint.ThrowableDataPointType c : ThrowableDataPoint.ThrowableDataPointType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ThrowableDataPoint.ThrowableDataPointType 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 name
NullPointerException
- if the argument is null
Copyright © 2005-2011 QOS.ch. All Rights Reserved.