public static enum Quote.OperationType extends Enum<Quote.OperationType>
Enum Constant and Description |
---|
_UNKNOWN |
CHANGE_SUBSCRIPTION |
CREATE_SUBSCRIPTION_FOR_CUSTOMER |
ONETIME_INVOICE |
Modifier and Type | Method and Description |
---|---|
static Quote.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Quote.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Quote.OperationType CREATE_SUBSCRIPTION_FOR_CUSTOMER
public static final Quote.OperationType CHANGE_SUBSCRIPTION
public static final Quote.OperationType ONETIME_INVOICE
public static final Quote.OperationType _UNKNOWN
public static Quote.OperationType[] values()
for (Quote.OperationType c : Quote.OperationType.values()) System.out.println(c);
public static Quote.OperationType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023 ChargeBee. All rights reserved.