Enum EntitlementAOStatusDryRun.DryRunChangeReason
- java.lang.Object
-
- java.lang.Enum<EntitlementAOStatusDryRun.DryRunChangeReason>
-
- org.killbill.billing.entitlement.api.EntitlementAOStatusDryRun.DryRunChangeReason
-
- All Implemented Interfaces:
Serializable,Comparable<EntitlementAOStatusDryRun.DryRunChangeReason>
- Enclosing interface:
- EntitlementAOStatusDryRun
public static enum EntitlementAOStatusDryRun.DryRunChangeReason extends Enum<EntitlementAOStatusDryRun.DryRunChangeReason>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AO_AVAILABLE_IN_NEW_PLANAO_INCLUDED_IN_NEW_PLANAO_NOT_AVAILABLE_IN_NEW_PLAN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EntitlementAOStatusDryRun.DryRunChangeReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static EntitlementAOStatusDryRun.DryRunChangeReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AO_INCLUDED_IN_NEW_PLAN
public static final EntitlementAOStatusDryRun.DryRunChangeReason AO_INCLUDED_IN_NEW_PLAN
-
AO_NOT_AVAILABLE_IN_NEW_PLAN
public static final EntitlementAOStatusDryRun.DryRunChangeReason AO_NOT_AVAILABLE_IN_NEW_PLAN
-
AO_AVAILABLE_IN_NEW_PLAN
public static final EntitlementAOStatusDryRun.DryRunChangeReason AO_AVAILABLE_IN_NEW_PLAN
-
-
Method Detail
-
values
public static EntitlementAOStatusDryRun.DryRunChangeReason[] 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 (EntitlementAOStatusDryRun.DryRunChangeReason c : EntitlementAOStatusDryRun.DryRunChangeReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EntitlementAOStatusDryRun.DryRunChangeReason 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
-
-