public enum TransferStatus extends Enum<TransferStatus>
Modifier and Type | Class and Description |
---|---|
static class |
TransferStatus.Adapter |
Enum Constant and Description |
---|
CANCELLED |
ENUM_UNKNOWN |
FAILED |
PENDING |
POSTED |
RETURNED |
SETTLED |
Modifier and Type | Method and Description |
---|---|
static TransferStatus |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static TransferStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransferStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransferStatus PENDING
public static final TransferStatus POSTED
public static final TransferStatus SETTLED
public static final TransferStatus CANCELLED
public static final TransferStatus FAILED
public static final TransferStatus RETURNED
public static final TransferStatus ENUM_UNKNOWN
public static TransferStatus[] values()
for (TransferStatus c : TransferStatus.values()) System.out.println(c);
public static TransferStatus 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<TransferStatus>
public static TransferStatus fromValue(String value)
Copyright © 2017–2023 Plaid Inc.. All rights reserved.