public static enum StatusMessage.Type extends Enum<StatusMessage.Type>
| Modifier and Type | Method and Description |
|---|---|
static StatusMessage.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusMessage.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusMessage.Type INFO
public static final StatusMessage.Type WARNING
public static final StatusMessage.Type ERROR
public static StatusMessage.Type[] values()
for (StatusMessage.Type c : StatusMessage.Type.values()) System.out.println(c);
public static StatusMessage.Type 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 nullCopyright © 2017. All rights reserved.