Package org.cyclos.utils
Enum Module
- java.lang.Object
-
- java.lang.Enum<Module>
-
- org.cyclos.utils.Module
-
- All Implemented Interfaces:
Serializable,Comparable<Module>
public enum Module extends Enum<Module>
Cyclos is divided into modules and submodules, this enumeration contains all defined modules.- See Also:
Submodule
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESSSystem access, like channels, passwords (transaction password, pin, etc), web service clients, etcAPPNew frontendBANKINGAccount configuration, account history, payments, invoices, etcCONTENT_MANAGEMENTContent pages, themes, translations, images, documentsGENERALGeneral parts that don't fit in other modulesMARKETPLACEAds, Delivery Method, Ad Categories, Import/Export CategoryMESSAGINGCyclos internal messagingMOBILEMobile application functions (payment, account info, contacts, etc)SYSTEMSystem configuration, languages, custom fields, reportsUSERSProducts, groups, users, contacts, records, dashboard, references, etc
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ModulevalueOf(String name)Returns the enum constant of this type with the specified name.static Module[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCESS
public static final Module ACCESS
System access, like channels, passwords (transaction password, pin, etc), web service clients, etc
-
APP
public static final Module APP
New frontend
-
BANKING
public static final Module BANKING
Account configuration, account history, payments, invoices, etc
-
CONTENT_MANAGEMENT
public static final Module CONTENT_MANAGEMENT
Content pages, themes, translations, images, documents
-
GENERAL
public static final Module GENERAL
General parts that don't fit in other modules
-
MARKETPLACE
public static final Module MARKETPLACE
Ads, Delivery Method, Ad Categories, Import/Export Category
-
MESSAGING
public static final Module MESSAGING
Cyclos internal messaging
-
MOBILE
public static final Module MOBILE
Mobile application functions (payment, account info, contacts, etc)
-
SYSTEM
public static final Module SYSTEM
System configuration, languages, custom fields, reports
-
USERS
public static final Module USERS
Products, groups, users, contacts, records, dashboard, references, etc
-
-
Method Detail
-
values
public static Module[] 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 (Module c : Module.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Module 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
-
-