Package org.cyclos.model.mobile
Enum BuiltInMobilePage
- java.lang.Object
-
- java.lang.Enum<BuiltInMobilePage>
-
- org.cyclos.model.mobile.BuiltInMobilePage
-
- All Implemented Interfaces:
Serializable,Comparable<BuiltInMobilePage>,HasMessageKey
public enum BuiltInMobilePage extends Enum<BuiltInMobilePage> implements HasMessageKey
Existing mobile app pages (not the same as MobilePage entity)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNTSCONTENT_PAGEEXTERNAL_PAYMENTMARKETPLACEPAYMENT_REQUESTPAYMENTSPROFILERECEIVE_PAYMENTRUN_OPERATIONRUN_WIZARDURLVOUCHERS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLocation()MessageKeygetMessageKey()static BuiltInMobilePagevalueOf(String name)Returns the enum constant of this type with the specified name.static BuiltInMobilePage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNTS
public static final BuiltInMobilePage ACCOUNTS
-
EXTERNAL_PAYMENT
public static final BuiltInMobilePage EXTERNAL_PAYMENT
-
PAYMENTS
public static final BuiltInMobilePage PAYMENTS
-
PAYMENT_REQUEST
public static final BuiltInMobilePage PAYMENT_REQUEST
-
RECEIVE_PAYMENT
public static final BuiltInMobilePage RECEIVE_PAYMENT
-
VOUCHERS
public static final BuiltInMobilePage VOUCHERS
-
MARKETPLACE
public static final BuiltInMobilePage MARKETPLACE
-
PROFILE
public static final BuiltInMobilePage PROFILE
-
RUN_OPERATION
public static final BuiltInMobilePage RUN_OPERATION
-
RUN_WIZARD
public static final BuiltInMobilePage RUN_WIZARD
-
CONTENT_PAGE
public static final BuiltInMobilePage CONTENT_PAGE
-
URL
public static final BuiltInMobilePage URL
-
-
Method Detail
-
values
public static BuiltInMobilePage[] 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 (BuiltInMobilePage c : BuiltInMobilePage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BuiltInMobilePage 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
-
getLocation
public String getLocation()
-
getMessageKey
public MessageKey getMessageKey()
- Specified by:
getMessageKeyin interfaceHasMessageKey
-
-