Package org.cyclos.model.users
Enum UsersSubmodule
- java.lang.Object
-
- java.lang.Enum<UsersSubmodule>
-
- org.cyclos.model.users.UsersSubmodule
-
- All Implemented Interfaces:
Serializable,Comparable<UsersSubmodule>,PrefixedEnum,Submodule
public enum UsersSubmodule extends Enum<UsersSubmodule> implements Submodule
Submodules for theUSERSmodule
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Modulemodule()Returns the module for this submodulestatic UsersSubmodulevalueOf(String name)Returns the enum constant of this type with the specified name.static UsersSubmodule[]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
-
ACCESS_LOGS
public static final UsersSubmodule ACCESS_LOGS
-
ADDRESSES
public static final UsersSubmodule ADDRESSES
-
BROKERING
public static final UsersSubmodule BROKERING
-
BULK_ACTIONS
public static final UsersSubmodule BULK_ACTIONS
-
CONTACTS
public static final UsersSubmodule CONTACTS
-
CONTACT_FIELDS
public static final UsersSubmodule CONTACT_FIELDS
-
CONTACT_INFOS
public static final UsersSubmodule CONTACT_INFOS
-
CONTACT_INFO_FIELDS
public static final UsersSubmodule CONTACT_INFO_FIELDS
-
DASHBOARD
public static final UsersSubmodule DASHBOARD
-
DASHBOARD_SETTINGS
public static final UsersSubmodule DASHBOARD_SETTINGS
-
GROUPS
public static final UsersSubmodule GROUPS
-
OPERATORS
public static final UsersSubmodule OPERATORS
-
OPERATOR_GROUPS
public static final UsersSubmodule OPERATOR_GROUPS
-
PHONES
public static final UsersSubmodule PHONES
-
PRODUCTS
public static final UsersSubmodule PRODUCTS
-
PRIVACY_CONTROLS
public static final UsersSubmodule PRIVACY_CONTROLS
-
PRIVACY_SETTINGS
public static final UsersSubmodule PRIVACY_SETTINGS
-
REFERENCES
public static final UsersSubmodule REFERENCES
-
FIELDS
public static final UsersSubmodule FIELDS
-
RECORD_FIELDS
public static final UsersSubmodule RECORD_FIELDS
-
RECORD_SECTIONS
public static final UsersSubmodule RECORD_SECTIONS
-
RECORDS
public static final UsersSubmodule RECORDS
-
RECORD_TYPES
public static final UsersSubmodule RECORD_TYPES
-
USERS
public static final UsersSubmodule USERS
-
USER_SECTIONS
public static final UsersSubmodule USER_SECTIONS
-
-
Method Detail
-
values
public static UsersSubmodule[] 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 (UsersSubmodule c : UsersSubmodule.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UsersSubmodule 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
-
-