public enum StatusEntryLevel extends Enum<StatusEntryLevel>
Modifier and Type | Method and Description |
---|---|
boolean |
isDebug() |
boolean |
isError() |
boolean |
isInfo() |
boolean |
isWarning() |
static StatusEntryLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusEntryLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusEntryLevel DEBUG
public static final StatusEntryLevel INFO
public static final StatusEntryLevel WARNING
public static final StatusEntryLevel ERROR
public static StatusEntryLevel[] values()
for (StatusEntryLevel c : StatusEntryLevel.values()) System.out.println(c);
public static StatusEntryLevel valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean isError()
public boolean isDebug()
public boolean isInfo()
public boolean isWarning()
Copyright © 2016. All rights reserved.