Package com.chrt.api.types
Enum PaymentRoleFilterEnum.Value
- java.lang.Object
-
- java.lang.Enum<PaymentRoleFilterEnum.Value>
-
- com.chrt.api.types.PaymentRoleFilterEnum.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PaymentRoleFilterEnum.Value>
- Enclosing class:
- PaymentRoleFilterEnum
public static enum PaymentRoleFilterEnum.Value extends java.lang.Enum<PaymentRoleFilterEnum.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DESTINATIONORIGINUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PaymentRoleFilterEnum.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PaymentRoleFilterEnum.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORIGIN
public static final PaymentRoleFilterEnum.Value ORIGIN
-
DESTINATION
public static final PaymentRoleFilterEnum.Value DESTINATION
-
UNKNOWN
public static final PaymentRoleFilterEnum.Value UNKNOWN
-
-
Method Detail
-
values
public static PaymentRoleFilterEnum.Value[] 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 (PaymentRoleFilterEnum.Value c : PaymentRoleFilterEnum.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PaymentRoleFilterEnum.Value 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
-
-