Package org.killbill.billing
Enum ObjectType
- java.lang.Object
-
- java.lang.Enum<ObjectType>
-
- org.killbill.billing.ObjectType
-
- All Implemented Interfaces:
Serializable,Comparable<ObjectType>
public enum ObjectType extends Enum<ObjectType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNTACCOUNT_EMAILBLOCKING_STATESBUNDLECUSTOM_FIELDINVOICEINVOICE_ITEMINVOICE_PAYMENTPAYMENTPAYMENT_ATTEMPTPAYMENT_METHODSERVICE_BROADCASTSUBSCRIPTIONSUBSCRIPTION_EVENTTAGTAG_DEFINITIONTENANTTENANT_KVSTRANSACTION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ObjectTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ObjectType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT
public static final ObjectType ACCOUNT
-
ACCOUNT_EMAIL
public static final ObjectType ACCOUNT_EMAIL
-
BLOCKING_STATES
public static final ObjectType BLOCKING_STATES
-
BUNDLE
public static final ObjectType BUNDLE
-
CUSTOM_FIELD
public static final ObjectType CUSTOM_FIELD
-
INVOICE
public static final ObjectType INVOICE
-
PAYMENT
public static final ObjectType PAYMENT
-
TRANSACTION
public static final ObjectType TRANSACTION
-
INVOICE_ITEM
public static final ObjectType INVOICE_ITEM
-
INVOICE_PAYMENT
public static final ObjectType INVOICE_PAYMENT
-
SUBSCRIPTION
public static final ObjectType SUBSCRIPTION
-
SUBSCRIPTION_EVENT
public static final ObjectType SUBSCRIPTION_EVENT
-
SERVICE_BROADCAST
public static final ObjectType SERVICE_BROADCAST
-
PAYMENT_ATTEMPT
public static final ObjectType PAYMENT_ATTEMPT
-
PAYMENT_METHOD
public static final ObjectType PAYMENT_METHOD
-
TAG
public static final ObjectType TAG
-
TAG_DEFINITION
public static final ObjectType TAG_DEFINITION
-
TENANT
public static final ObjectType TENANT
-
TENANT_KVS
public static final ObjectType TENANT_KVS
-
-
Method Detail
-
values
public static ObjectType[] 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 (ObjectType c : ObjectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ObjectType 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
-
-