Enum SmsOperationConfigurationNature
- java.lang.Object
-
- java.lang.Enum<SmsOperationConfigurationNature>
-
- org.cyclos.model.system.smsoperationconfigurations.SmsOperationConfigurationNature
-
- All Implemented Interfaces:
Serializable,Comparable<SmsOperationConfigurationNature>,HasMessageKey
public enum SmsOperationConfigurationNature extends Enum<SmsOperationConfigurationNature> implements HasMessageKey
Contains the possible types of sms operations
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPT_PAYMENT_REQUESTACCOUNT_INFORMATIONCUSTOMDENY_PAYMENT_REQUESTHELPPAYMENTPERFORM_EXTERNAL_PAYMENTREDEEM_VOUCHERREGISTERSEND_PAYMENT_REQUESTTEXT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MessageKeygetMessageKey()booleanisCustomizable()static SmsOperationConfigurationNaturevalueOf(String name)Returns the enum constant of this type with the specified name.static SmsOperationConfigurationNature[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT_INFORMATION
public static final SmsOperationConfigurationNature ACCOUNT_INFORMATION
-
PAYMENT
public static final SmsOperationConfigurationNature PAYMENT
-
REGISTER
public static final SmsOperationConfigurationNature REGISTER
-
CUSTOM
public static final SmsOperationConfigurationNature CUSTOM
-
TEXT
public static final SmsOperationConfigurationNature TEXT
-
HELP
public static final SmsOperationConfigurationNature HELP
-
SEND_PAYMENT_REQUEST
public static final SmsOperationConfigurationNature SEND_PAYMENT_REQUEST
-
DENY_PAYMENT_REQUEST
public static final SmsOperationConfigurationNature DENY_PAYMENT_REQUEST
-
ACCEPT_PAYMENT_REQUEST
public static final SmsOperationConfigurationNature ACCEPT_PAYMENT_REQUEST
-
PERFORM_EXTERNAL_PAYMENT
public static final SmsOperationConfigurationNature PERFORM_EXTERNAL_PAYMENT
-
REDEEM_VOUCHER
public static final SmsOperationConfigurationNature REDEEM_VOUCHER
-
-
Method Detail
-
values
public static SmsOperationConfigurationNature[] 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 (SmsOperationConfigurationNature c : SmsOperationConfigurationNature.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SmsOperationConfigurationNature 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
-
isCustomizable
public boolean isCustomizable()
-
-