public enum CommonErrorType extends Enum<CommonErrorType> implements ErrorType
| Enum Constant and Description |
|---|
SYSTEM_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static CommonErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommonErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetMessage, namepublic static final CommonErrorType SYSTEM_ERROR
public static CommonErrorType[] values()
for (CommonErrorType c : CommonErrorType.values()) System.out.println(c);
public static CommonErrorType 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 © 2021 Crabs Hue. All rights reserved.