Enum UserGroupOption
- java.lang.Object
-
- java.lang.Enum<UserGroupOption>
-
- de.hybris.platform.commercefacades.user.UserGroupOption
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UserGroupOption>
public enum UserGroupOption extends java.lang.Enum<UserGroupOption>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASICGenerated enum value forUserGroupOption.BASICvalue defined at extensioncommercefacades.MEMBERSGenerated enum value forUserGroupOption.MEMBERSvalue defined at extensioncommercefacades.SUBGROUPSGenerated enum value forUserGroupOption.SUBGROUPSvalue defined at extensioncommercefacades.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UserGroupOptionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UserGroupOption[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASIC
public static final UserGroupOption BASIC
Generated enum value forUserGroupOption.BASICvalue defined at extensioncommercefacades.
-
MEMBERS
public static final UserGroupOption MEMBERS
Generated enum value forUserGroupOption.MEMBERSvalue defined at extensioncommercefacades.
-
SUBGROUPS
public static final UserGroupOption SUBGROUPS
Generated enum value forUserGroupOption.SUBGROUPSvalue defined at extensioncommercefacades.
-
-
Method Detail
-
values
public static UserGroupOption[] 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 (UserGroupOption c : UserGroupOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UserGroupOption valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-