Package com.adyen.model.nexo
Enum CustomerOrderReqType
- java.lang.Object
-
- java.lang.Enum<CustomerOrderReqType>
-
- com.adyen.model.nexo.CustomerOrderReqType
-
- All Implemented Interfaces:
Serializable,Comparable<CustomerOrderReqType>
public enum CustomerOrderReqType extends Enum<CustomerOrderReqType>
Java class for CustomerOrderReqType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CustomerOrderReqType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Open"/> <enumeration value="Closed"/> <enumeration value="Both"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CustomerOrderReqTypefromValue(String v)From value customer order req type.Stringvalue()Value string.static CustomerOrderReqTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CustomerOrderReqType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPEN
public static final CustomerOrderReqType OPEN
Customer order not completed.
-
CLOSED
public static final CustomerOrderReqType CLOSED
Completed customer orders.
-
BOTH
public static final CustomerOrderReqType BOTH
All type of CustomerOrder should be listed
-
-
Method Detail
-
values
public static CustomerOrderReqType[] 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 (CustomerOrderReqType c : CustomerOrderReqType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CustomerOrderReqType 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
-
value
public String value()
Value string.- Returns:
- the string
-
fromValue
public static CustomerOrderReqType fromValue(String v)
From value customer order req type.- Parameters:
v- the v- Returns:
- the customer order req type
-
-