Package google.registry.model.billing
Enum BillingEvent.Reason
- java.lang.Object
-
- java.lang.Enum<BillingEvent.Reason>
-
- google.registry.model.billing.BillingEvent.Reason
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BillingEvent.Reason>
- Enclosing class:
- BillingEvent
public static enum BillingEvent.Reason extends java.lang.Enum<BillingEvent.Reason>
The reason for the bill, which maps 1:1 to skus in go/registry-billing-skus.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATE
ERROR
Deprecated.FEE_EARLY_ACCESS
RENEW
RESTORE
SERVER_STATUS
TRANSFER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasPeriodYears()
Returns whether billing events with this reason have a period years associated with them.static BillingEvent.Reason
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BillingEvent.Reason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final BillingEvent.Reason CREATE
-
ERROR
@Deprecated public static final BillingEvent.Reason ERROR
Deprecated.
-
FEE_EARLY_ACCESS
public static final BillingEvent.Reason FEE_EARLY_ACCESS
-
RENEW
public static final BillingEvent.Reason RENEW
-
RESTORE
public static final BillingEvent.Reason RESTORE
-
SERVER_STATUS
public static final BillingEvent.Reason SERVER_STATUS
-
TRANSFER
public static final BillingEvent.Reason TRANSFER
-
-
Method Detail
-
values
public static BillingEvent.Reason[] 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 (BillingEvent.Reason c : BillingEvent.Reason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BillingEvent.Reason 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
-
hasPeriodYears
public boolean hasPeriodYears()
Returns whether billing events with this reason have a period years associated with them.Note that this is an "if an only if" condition.
-
-