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