Enum ExportFormatContext
- java.lang.Object
-
- java.lang.Enum<ExportFormatContext>
-
- org.cyclos.model.system.exportformats.ExportFormatContext
-
- All Implemented Interfaces:
Serializable,Comparable<ExportFormatContext>,HasMessageKey
public enum ExportFormatContext extends Enum<ExportFormatContext> implements HasMessageKey
Possible contexts for an export format to be used
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringfileName(String fileExtension)Returns a file name for the given extensionMessageKeygetMessageKey()booleanisPdf()booleanisTabular()static ExportFormatContextvalueOf(String name)Returns the enum constant of this type with the specified name.static ExportFormatContext[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT_HISTORY
public static final ExportFormatContext ACCOUNT_HISTORY
-
TRANSFERS_OVERVIEW
public static final ExportFormatContext TRANSFERS_OVERVIEW
-
TRANS_DETAILS
public static final ExportFormatContext TRANS_DETAILS
-
ARCHIVED_ACCOUNT_HISTORY
public static final ExportFormatContext ARCHIVED_ACCOUNT_HISTORY
-
ARCHIVED_TRANSFER
public static final ExportFormatContext ARCHIVED_TRANSFER
-
TRANSACTIONS_SEARCH
public static final ExportFormatContext TRANSACTIONS_SEARCH
-
TRANSACTIONS_OVERVIEW
public static final ExportFormatContext TRANSACTIONS_OVERVIEW
-
INSTALLMENTS_SEARCH
public static final ExportFormatContext INSTALLMENTS_SEARCH
-
INSTALLMENTS_OVERVIEW
public static final ExportFormatContext INSTALLMENTS_OVERVIEW
-
USERS_SEARCH
public static final ExportFormatContext USERS_SEARCH
-
USERS_WITH_BALANCES
public static final ExportFormatContext USERS_WITH_BALANCES
-
BALANCE_LIMITS_OVERVIEW
public static final ExportFormatContext BALANCE_LIMITS_OVERVIEW
-
PAYMENT_AMOUNT_LIMITS_OVERVIEW
public static final ExportFormatContext PAYMENT_AMOUNT_LIMITS_OVERVIEW
-
ADVERTISEMENT_DETAILS
public static final ExportFormatContext ADVERTISEMENT_DETAILS
-
ORDER_DETAILS
public static final ExportFormatContext ORDER_DETAILS
-
RECORDS_SEARCH
public static final ExportFormatContext RECORDS_SEARCH
-
RECORDS_OVERVIEW
public static final ExportFormatContext RECORDS_OVERVIEW
-
SHARED_FIELDS_RECORDS_SEARCH
public static final ExportFormatContext SHARED_FIELDS_RECORDS_SEARCH
-
TOKENS_SEARCH
public static final ExportFormatContext TOKENS_SEARCH
-
VOUCHERS_SEARCH
public static final ExportFormatContext VOUCHERS_SEARCH
-
USER_VOUCHERS_SEARCH
public static final ExportFormatContext USER_VOUCHERS_SEARCH
-
VOUCHER_DETAILS
public static final ExportFormatContext VOUCHER_DETAILS
-
VOUCHER_TRANSACTION_DETAILS
public static final ExportFormatContext VOUCHER_TRANSACTION_DETAILS
-
CUSTOM_OPERATION
public static final ExportFormatContext CUSTOM_OPERATION
-
ENTITY_LOGS
public static final ExportFormatContext ENTITY_LOGS
-
-
Method Detail
-
values
public static ExportFormatContext[] 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 (ExportFormatContext c : ExportFormatContext.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExportFormatContext 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
-
getMessageKey
public MessageKey getMessageKey()
- Specified by:
getMessageKeyin interfaceHasMessageKey
-
isPdf
public boolean isPdf()
-
isTabular
public boolean isTabular()
-
-