public enum ProductNature extends java.lang.Enum<ProductNature>
| Modifier and Type | Method and Description |
|---|---|
static ProductNature |
fromRole(Role role) |
Role |
getRole() |
static ProductNature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProductNature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProductNature ADMIN
public static final ProductNature MEMBER
public static final ProductNature BROKER
public static ProductNature[] values()
for (ProductNature c : ProductNature.values()) System.out.println(c);
public static ProductNature valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static ProductNature fromRole(Role role)
public Role getRole()