public static enum AeronException.Category extends Enum<AeronException.Category>
Exception.| Enum Constant and Description |
|---|
ERROR
Exception is an error.
|
FATAL
Exception indicates a fatal condition.
|
WARN
Exception is a warning.
|
| Modifier and Type | Method and Description |
|---|---|
static AeronException.Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AeronException.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AeronException.Category FATAL
public static final AeronException.Category ERROR
public static final AeronException.Category WARN
public static AeronException.Category[] values()
for (AeronException.Category c : AeronException.Category.values()) System.out.println(c);
public static AeronException.Category 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 © 2014-2020 Real Logic Limited. All Rights Reserved.