Package org.cyclos.model.mobile
Enum MobileSubmodule
- java.lang.Object
-
- java.lang.Enum<MobileSubmodule>
-
- org.cyclos.model.mobile.MobileSubmodule
-
- All Implemented Interfaces:
Serializable,Comparable<MobileSubmodule>,PrefixedEnum,Submodule
public enum MobileSubmodule extends Enum<MobileSubmodule> implements Submodule
Mobile application submodules (used by translation purposes).
Don't be confused with the mobile pages in cyclos used to support mobile application configuration, etc. They are in the CONTENT.MOBILE_PAGES submodule
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNTSADDRESSESAGREEMENTSCONFIGURATIONDEVICESGENERALHELPSHOMELOGINMARKETPLACEMESSAGESNOTIFICATIONPAYMENTSPHONESPINPROFILERECORDSREFERENCESTICKETSTRANSACTIONSUIUSERSVOUCHERSWIZARDS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Modulemodule()Returns the module for this submodulestatic MobileSubmodulevalueOf(String name)Returns the enum constant of this type with the specified name.static MobileSubmodule[]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
-
ACCOUNTS
public static final MobileSubmodule ACCOUNTS
-
ADDRESSES
public static final MobileSubmodule ADDRESSES
-
AGREEMENTS
public static final MobileSubmodule AGREEMENTS
-
CONFIGURATION
public static final MobileSubmodule CONFIGURATION
-
DEVICES
public static final MobileSubmodule DEVICES
-
GENERAL
public static final MobileSubmodule GENERAL
-
HELPS
public static final MobileSubmodule HELPS
-
HOME
public static final MobileSubmodule HOME
-
LOGIN
public static final MobileSubmodule LOGIN
-
MARKETPLACE
public static final MobileSubmodule MARKETPLACE
-
MESSAGES
public static final MobileSubmodule MESSAGES
-
NOTIFICATION
public static final MobileSubmodule NOTIFICATION
-
PAYMENTS
public static final MobileSubmodule PAYMENTS
-
PHONES
public static final MobileSubmodule PHONES
-
PIN
public static final MobileSubmodule PIN
-
TRANSACTIONS
public static final MobileSubmodule TRANSACTIONS
-
TICKETS
public static final MobileSubmodule TICKETS
-
UI
public static final MobileSubmodule UI
-
VOUCHERS
public static final MobileSubmodule VOUCHERS
-
PROFILE
public static final MobileSubmodule PROFILE
-
USERS
public static final MobileSubmodule USERS
-
WIZARDS
public static final MobileSubmodule WIZARDS
-
REFERENCES
public static final MobileSubmodule REFERENCES
-
RECORDS
public static final MobileSubmodule RECORDS
-
-
Method Detail
-
values
public static MobileSubmodule[] 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 (MobileSubmodule c : MobileSubmodule.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MobileSubmodule 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
-
-