Package org.cyclos.model.banking
Enum BankingSubmodule
- java.lang.Object
-
- java.lang.Enum<BankingSubmodule>
-
- org.cyclos.model.banking.BankingSubmodule
-
- All Implemented Interfaces:
Serializable,Comparable<BankingSubmodule>,PrefixedEnum,Submodule
public enum BankingSubmodule extends Enum<BankingSubmodule> implements Submodule
Submodules for theTRANSACTIONSmodule
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNT_FEESACCOUNT_SETTINGSACCOUNT_TYPESACCOUNTSAUTHORIZATION_LEVELSAUTHORIZATION_ROLESAUTHORIZATIONSCURRENCIESPAYTicket / easy invoice confirmation pagesRATESTRANSACTION_FIELDSTRANSACTIONSTRANSFER_FEESTRANSFER_FILTERSTRANSFER_STATUSTRANSFER_TYPESTRANSFERSVOUCHER_CATEGORIESVOUCHER_CONFIGURATIONSVOUCHER_FIELDSVOUCHER_TEMPLATESVOUCHER_TYPESVOUCHERS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Modulemodule()Returns the module for this submodulestatic BankingSubmodulevalueOf(String name)Returns the enum constant of this type with the specified name.static BankingSubmodule[]values()Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface org.cyclos.utils.PrefixedEnum
name
-
-
-
-
Enum Constant Detail
-
ACCOUNT_FEES
public static final BankingSubmodule ACCOUNT_FEES
-
ACCOUNT_TYPES
public static final BankingSubmodule ACCOUNT_TYPES
-
ACCOUNTS
public static final BankingSubmodule ACCOUNTS
-
ACCOUNT_SETTINGS
public static final BankingSubmodule ACCOUNT_SETTINGS
-
AUTHORIZATION_LEVELS
public static final BankingSubmodule AUTHORIZATION_LEVELS
-
AUTHORIZATION_ROLES
public static final BankingSubmodule AUTHORIZATION_ROLES
-
AUTHORIZATIONS
public static final BankingSubmodule AUTHORIZATIONS
-
CURRENCIES
public static final BankingSubmodule CURRENCIES
-
PAY
public static final BankingSubmodule PAY
Ticket / easy invoice confirmation pages
-
RATES
public static final BankingSubmodule RATES
-
TRANSACTION_FIELDS
public static final BankingSubmodule TRANSACTION_FIELDS
-
TRANSACTIONS
public static final BankingSubmodule TRANSACTIONS
-
TRANSFERS
public static final BankingSubmodule TRANSFERS
-
TRANSFER_FEES
public static final BankingSubmodule TRANSFER_FEES
-
TRANSFER_FILTERS
public static final BankingSubmodule TRANSFER_FILTERS
-
TRANSFER_STATUS
public static final BankingSubmodule TRANSFER_STATUS
-
TRANSFER_TYPES
public static final BankingSubmodule TRANSFER_TYPES
-
VOUCHER_CONFIGURATIONS
public static final BankingSubmodule VOUCHER_CONFIGURATIONS
-
VOUCHER_CATEGORIES
public static final BankingSubmodule VOUCHER_CATEGORIES
-
VOUCHER_TYPES
public static final BankingSubmodule VOUCHER_TYPES
-
VOUCHER_TEMPLATES
public static final BankingSubmodule VOUCHER_TEMPLATES
-
VOUCHER_FIELDS
public static final BankingSubmodule VOUCHER_FIELDS
-
VOUCHERS
public static final BankingSubmodule VOUCHERS
-
-
Method Detail
-
values
public static BankingSubmodule[] 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 (BankingSubmodule c : BankingSubmodule.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BankingSubmodule 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
-
-