public static enum Error.TypeEnum extends Enum<Error.TypeEnum>
| Enum Constant and Description |
|---|
DUPLICATE_STATEMENT |
INTERNAL_ERROR |
INVALID_APPLICATION |
INVALID_END_BALANCE |
INVALID_FEED_CONNECTION |
INVALID_REQUEST |
INVALID_START_AND_END_DATE |
INVALID_START_DATE |
| Modifier and Type | Method and Description |
|---|---|
static Error.TypeEnum |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static Error.TypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Error.TypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Error.TypeEnum INVALID_REQUEST
public static final Error.TypeEnum INVALID_APPLICATION
public static final Error.TypeEnum INVALID_FEED_CONNECTION
public static final Error.TypeEnum DUPLICATE_STATEMENT
public static final Error.TypeEnum INVALID_END_BALANCE
public static final Error.TypeEnum INVALID_START_AND_END_DATE
public static final Error.TypeEnum INVALID_START_DATE
public static final Error.TypeEnum INTERNAL_ERROR
public static Error.TypeEnum[] values()
for (Error.TypeEnum c : Error.TypeEnum.values()) System.out.println(c);
public static Error.TypeEnum 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 nullpublic String getValue()
public String toString()
toString in class Enum<Error.TypeEnum>public static Error.TypeEnum fromValue(String value)
Copyright © 2019. All rights reserved.