public enum BillingActionPolicy extends Enum<BillingActionPolicy>
Subscription cancellation or plan change should operate
| Enum Constant and Description |
|---|
END_OF_TERM
The cancellation or
Plan change effectiveDate will occur at the end of the current invoiced service
period, and that will not trigger any proration and credit. |
ILLEGAL |
IMMEDIATE
The cancellation or
Plan change effectiveDate will occur at the requestedDate |
| Modifier and Type | Method and Description |
|---|---|
static BillingActionPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BillingActionPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BillingActionPolicy END_OF_TERM
Plan change effectiveDate will occur at the end of the current invoiced service
period, and that will not trigger any proration and credit.public static final BillingActionPolicy IMMEDIATE
Plan change effectiveDate will occur at the requestedDatepublic static final BillingActionPolicy ILLEGAL
public static BillingActionPolicy[] values()
for (BillingActionPolicy c : BillingActionPolicy.values()) System.out.println(c);
public static BillingActionPolicy 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 © 2010-2015. All Rights Reserved.