Enum UberfireDocksInteractionEvent.InteractionType
- java.lang.Object
-
- java.lang.Enum<UberfireDocksInteractionEvent.InteractionType>
-
- org.uberfire.client.workbench.docks.UberfireDocksInteractionEvent.InteractionType
-
- All Implemented Interfaces:
Serializable,Comparable<UberfireDocksInteractionEvent.InteractionType>
- Enclosing class:
- UberfireDocksInteractionEvent
public static enum UberfireDocksInteractionEvent.InteractionType extends Enum<UberfireDocksInteractionEvent.InteractionType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UberfireDocksInteractionEvent.InteractionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static UberfireDocksInteractionEvent.InteractionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPENED
public static final UberfireDocksInteractionEvent.InteractionType OPENED
-
CLOSED
public static final UberfireDocksInteractionEvent.InteractionType CLOSED
-
RESIZED
public static final UberfireDocksInteractionEvent.InteractionType RESIZED
-
-
Method Detail
-
values
public static UberfireDocksInteractionEvent.InteractionType[] 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 (UberfireDocksInteractionEvent.InteractionType c : UberfireDocksInteractionEvent.InteractionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UberfireDocksInteractionEvent.InteractionType 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
-
-