public enum ERights extends Enum<ERights>
Enum Constant and Description |
---|
CAN_DELETE |
CAN_EDIT |
CAN_REPLY |
Modifier and Type | Method and Description |
---|---|
static ERights |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ERights[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ERights CAN_EDIT
public static final ERights CAN_REPLY
public static final ERights CAN_DELETE
public static ERights[] values()
for (ERights c : ERights.values()) System.out.println(c);
public static ERights valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019 Communote team. All rights reserved.