Package com.adyen.model.balanceplatform
Enum PriorityRestriction.ValueEnum
- java.lang.Object
-
- java.lang.Enum<PriorityRestriction.ValueEnum>
-
- com.adyen.model.balanceplatform.PriorityRestriction.ValueEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PriorityRestriction.ValueEnum>
- Enclosing class:
- PriorityRestriction
public static enum PriorityRestriction.ValueEnum extends Enum<PriorityRestriction.ValueEnum>
Gets or Sets value
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CROSSBORDERFASTINSTANTINTRABANKREGULAR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PriorityRestriction.ValueEnumfromValue(String value)StringgetValue()StringtoString()static PriorityRestriction.ValueEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PriorityRestriction.ValueEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CROSSBORDER
public static final PriorityRestriction.ValueEnum CROSSBORDER
-
FAST
public static final PriorityRestriction.ValueEnum FAST
-
INSTANT
public static final PriorityRestriction.ValueEnum INSTANT
-
INTRABANK
public static final PriorityRestriction.ValueEnum INTRABANK
-
REGULAR
public static final PriorityRestriction.ValueEnum REGULAR
-
-
Method Detail
-
values
public static PriorityRestriction.ValueEnum[] 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 (PriorityRestriction.ValueEnum c : PriorityRestriction.ValueEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PriorityRestriction.ValueEnum 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<PriorityRestriction.ValueEnum>
-
fromValue
public static PriorityRestriction.ValueEnum fromValue(String value)
-
-