Package com.adyen.model.storedvalue
Enum StoredValueLoadRequest.LoadTypeEnum
- java.lang.Object
-
- java.lang.Enum<StoredValueLoadRequest.LoadTypeEnum>
-
- com.adyen.model.storedvalue.StoredValueLoadRequest.LoadTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<StoredValueLoadRequest.LoadTypeEnum>
- Enclosing class:
- StoredValueLoadRequest
public static enum StoredValueLoadRequest.LoadTypeEnum extends Enum<StoredValueLoadRequest.LoadTypeEnum>
The type of load you are trying to do, when absent we default to 'Load'
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LOADMERCHANDISERETURN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StoredValueLoadRequest.LoadTypeEnumfromValue(String value)StringgetValue()StringtoString()static StoredValueLoadRequest.LoadTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static StoredValueLoadRequest.LoadTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MERCHANDISERETURN
public static final StoredValueLoadRequest.LoadTypeEnum MERCHANDISERETURN
-
LOAD
public static final StoredValueLoadRequest.LoadTypeEnum LOAD
-
-
Method Detail
-
values
public static StoredValueLoadRequest.LoadTypeEnum[] 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 (StoredValueLoadRequest.LoadTypeEnum c : StoredValueLoadRequest.LoadTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StoredValueLoadRequest.LoadTypeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<StoredValueLoadRequest.LoadTypeEnum>
-
fromValue
public static StoredValueLoadRequest.LoadTypeEnum fromValue(String value)
-
-