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