Package org.killbill.billing.tenant.api
Enum TenantKV.TenantKey
- java.lang.Object
-
- java.lang.Enum<TenantKV.TenantKey>
-
- org.killbill.billing.tenant.api.TenantKV.TenantKey
-
- All Implemented Interfaces:
Serializable,Comparable<TenantKV.TenantKey>
- Enclosing interface:
- TenantKV
public static enum TenantKV.TenantKey extends Enum<TenantKV.TenantKey>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CATALOGCATALOG_TRANSLATION_INVOICE_MP_TEMPLATEINVOICE_TEMPLATEINVOICE_TRANSLATION_OVERDUE_CONFIGPER_TENANT_CONFIGPLUGIN_CONFIG_PLUGIN_PAYMENT_STATE_MACHINE_PUSH_NOTIFICATION_CB
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisSingleValue()static TenantKV.TenantKeyvalueOf(String name)Returns the enum constant of this type with the specified name.static TenantKV.TenantKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUSH_NOTIFICATION_CB
public static final TenantKV.TenantKey PUSH_NOTIFICATION_CB
-
CATALOG
public static final TenantKV.TenantKey CATALOG
-
OVERDUE_CONFIG
public static final TenantKV.TenantKey OVERDUE_CONFIG
-
PER_TENANT_CONFIG
public static final TenantKV.TenantKey PER_TENANT_CONFIG
-
INVOICE_TRANSLATION_
public static final TenantKV.TenantKey INVOICE_TRANSLATION_
-
CATALOG_TRANSLATION_
public static final TenantKV.TenantKey CATALOG_TRANSLATION_
-
INVOICE_TEMPLATE
public static final TenantKV.TenantKey INVOICE_TEMPLATE
-
INVOICE_MP_TEMPLATE
public static final TenantKV.TenantKey INVOICE_MP_TEMPLATE
-
PLUGIN_CONFIG_
public static final TenantKV.TenantKey PLUGIN_CONFIG_
-
PLUGIN_PAYMENT_STATE_MACHINE_
public static final TenantKV.TenantKey PLUGIN_PAYMENT_STATE_MACHINE_
-
-
Method Detail
-
values
public static TenantKV.TenantKey[] 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 (TenantKV.TenantKey c : TenantKV.TenantKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TenantKV.TenantKey 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
-
isSingleValue
public boolean isSingleValue()
-
-