Package io.moov.sdk.models.components
Enum RefundCardStatus
- java.lang.Object
-
- java.lang.Enum<RefundCardStatus>
-
- io.moov.sdk.models.components.RefundCardStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RefundCardStatus>
public enum RefundCardStatus extends java.lang.Enum<RefundCardStatus>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<RefundCardStatus>fromValue(java.lang.String value)java.lang.Stringvalue()static RefundCardStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RefundCardStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INITIATED
public static final RefundCardStatus INITIATED
-
CONFIRMED
public static final RefundCardStatus CONFIRMED
-
SETTLED
public static final RefundCardStatus SETTLED
-
FAILED
public static final RefundCardStatus FAILED
-
COMPLETED
public static final RefundCardStatus COMPLETED
-
-
Method Detail
-
values
public static RefundCardStatus[] 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 (RefundCardStatus c : RefundCardStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RefundCardStatus valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
-
fromValue
public static java.util.Optional<RefundCardStatus> fromValue(java.lang.String value)
-
-