Package io.moov.sdk.models.components
Enum FulfillmentMethod
- java.lang.Object
-
- java.lang.Enum<FulfillmentMethod>
-
- io.moov.sdk.models.components.FulfillmentMethod
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FulfillmentMethod>
public enum FulfillmentMethod extends java.lang.Enum<FulfillmentMethod>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BILL_OR_DEBT_PAYMENTDIGITAL_CONTENTDONATIONIN_PERSON_SERVICELOCAL_PICKUP_OR_DELIVERYOTHERREMOTE_SERVICESHIPPED_PHYSICAL_GOODSSUBSCRIPTION_OR_MEMBERSHIP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<FulfillmentMethod>fromValue(java.lang.String value)java.lang.Stringvalue()static FulfillmentMethodvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FulfillmentMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BILL_OR_DEBT_PAYMENT
public static final FulfillmentMethod BILL_OR_DEBT_PAYMENT
-
DIGITAL_CONTENT
public static final FulfillmentMethod DIGITAL_CONTENT
-
DONATION
public static final FulfillmentMethod DONATION
-
IN_PERSON_SERVICE
public static final FulfillmentMethod IN_PERSON_SERVICE
-
LOCAL_PICKUP_OR_DELIVERY
public static final FulfillmentMethod LOCAL_PICKUP_OR_DELIVERY
-
OTHER
public static final FulfillmentMethod OTHER
-
REMOTE_SERVICE
public static final FulfillmentMethod REMOTE_SERVICE
-
SHIPPED_PHYSICAL_GOODS
public static final FulfillmentMethod SHIPPED_PHYSICAL_GOODS
-
SUBSCRIPTION_OR_MEMBERSHIP
public static final FulfillmentMethod SUBSCRIPTION_OR_MEMBERSHIP
-
-
Method Detail
-
values
public static FulfillmentMethod[] 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 (FulfillmentMethod c : FulfillmentMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FulfillmentMethod 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<FulfillmentMethod> fromValue(java.lang.String value)
-
-