public enum TechnicalLogSeverity extends java.lang.Enum<TechnicalLogSeverity>
| Modifier and Type | Method and Description |
|---|---|
static TechnicalLogSeverity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TechnicalLogSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TechnicalLogSeverity TRACE
public static final TechnicalLogSeverity DEBUG
public static final TechnicalLogSeverity INFO
public static final TechnicalLogSeverity WARNING
public static final TechnicalLogSeverity ERROR
public static TechnicalLogSeverity[] values()
for (TechnicalLogSeverity c : TechnicalLogSeverity.values()) System.out.println(c);
public static TechnicalLogSeverity valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null