Enum GuidedDecisionTablePresenter.Access.LockedBy
- java.lang.Object
-
- java.lang.Enum<GuidedDecisionTablePresenter.Access.LockedBy>
-
- org.drools.workbench.screens.guided.dtable.client.widget.table.GuidedDecisionTablePresenter.Access.LockedBy
-
- All Implemented Interfaces:
Serializable,Comparable<GuidedDecisionTablePresenter.Access.LockedBy>
- Enclosing class:
- GuidedDecisionTablePresenter.Access
public static enum GuidedDecisionTablePresenter.Access.LockedBy extends Enum<GuidedDecisionTablePresenter.Access.LockedBy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CURRENT_USERNOBODYOTHER_USER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GuidedDecisionTablePresenter.Access.LockedByvalueOf(String name)Returns the enum constant of this type with the specified name.static GuidedDecisionTablePresenter.Access.LockedBy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CURRENT_USER
public static final GuidedDecisionTablePresenter.Access.LockedBy CURRENT_USER
-
OTHER_USER
public static final GuidedDecisionTablePresenter.Access.LockedBy OTHER_USER
-
NOBODY
public static final GuidedDecisionTablePresenter.Access.LockedBy NOBODY
-
-
Method Detail
-
values
public static GuidedDecisionTablePresenter.Access.LockedBy[] 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 (GuidedDecisionTablePresenter.Access.LockedBy c : GuidedDecisionTablePresenter.Access.LockedBy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GuidedDecisionTablePresenter.Access.LockedBy 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
-
-