Package com.hyperwallet.clientsdk.model
Enum HyperwalletTransfer.Status
- java.lang.Object
-
- java.lang.Enum<HyperwalletTransfer.Status>
-
- com.hyperwallet.clientsdk.model.HyperwalletTransfer.Status
-
- All Implemented Interfaces:
Serializable,Comparable<HyperwalletTransfer.Status>
- Enclosing class:
- HyperwalletTransfer
public static enum HyperwalletTransfer.Status extends Enum<HyperwalletTransfer.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELLEDCOMPLETEDEXPIREDFAILEDIN_PROGRESSQUOTEDRETURNEDSCHEDULEDVERIFICATION_REQUIRED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HyperwalletTransfer.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static HyperwalletTransfer.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
QUOTED
public static final HyperwalletTransfer.Status QUOTED
-
SCHEDULED
public static final HyperwalletTransfer.Status SCHEDULED
-
IN_PROGRESS
public static final HyperwalletTransfer.Status IN_PROGRESS
-
VERIFICATION_REQUIRED
public static final HyperwalletTransfer.Status VERIFICATION_REQUIRED
-
COMPLETED
public static final HyperwalletTransfer.Status COMPLETED
-
CANCELLED
public static final HyperwalletTransfer.Status CANCELLED
-
RETURNED
public static final HyperwalletTransfer.Status RETURNED
-
FAILED
public static final HyperwalletTransfer.Status FAILED
-
EXPIRED
public static final HyperwalletTransfer.Status EXPIRED
-
-
Method Detail
-
values
public static HyperwalletTransfer.Status[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HyperwalletTransfer.Status c : HyperwalletTransfer.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HyperwalletTransfer.Status valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-