public enum DecisionTableRights extends Enum<DecisionTableRights>
Enum Constant and Description |
---|
CAN_CHANGE_INPUTS
User can change inputs.
|
CAN_CHANGE_LANGUAGE
User can change expression language used in input/output expressions.
|
CAN_CHANGE_NAME
User can change decision table name.
|
CAN_CHANGE_OUTPUTS
User can change outputs.
|
CAN_CHANGE_RULES
User can add, remove and modify rules.
|
CAN_EVERYTHING
Convenience - implies all other rights.
|
Modifier and Type | Method and Description |
---|---|
static DecisionTableRights |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecisionTableRights[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecisionTableRights CAN_EVERYTHING
public static final DecisionTableRights CAN_CHANGE_NAME
public static final DecisionTableRights CAN_CHANGE_LANGUAGE
public static final DecisionTableRights CAN_CHANGE_INPUTS
public static final DecisionTableRights CAN_CHANGE_OUTPUTS
public static final DecisionTableRights CAN_CHANGE_RULES
public static DecisionTableRights[] values()
for (DecisionTableRights c : DecisionTableRights.values()) System.out.println(c);
public static DecisionTableRights 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 © 2007-2020 Whitestein Technologies. All Rights Reserved.