Package com.tick42.glue.desktop.layouts
Enum LayoutComponentType
- java.lang.Object
-
- java.lang.Enum<LayoutComponentType>
-
- com.tick42.glue.desktop.layouts.LayoutComponentType
-
- All Implemented Interfaces:
Serializable,Comparable<LayoutComponentType>
public enum LayoutComponentType extends Enum<LayoutComponentType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LayoutComponentTypefromString(String name)StringgetName()static LayoutComponentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static LayoutComponentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVITY
public static final LayoutComponentType ACTIVITY
-
WINDOW
public static final LayoutComponentType WINDOW
-
EXE
public static final LayoutComponentType EXE
-
NODE
public static final LayoutComponentType NODE
-
CANVAS
public static final LayoutComponentType CANVAS
-
SWIMLANE
public static final LayoutComponentType SWIMLANE
-
CLICKONCE
public static final LayoutComponentType CLICKONCE
-
CITRIX
public static final LayoutComponentType CITRIX
- Since:
- 1.4.3
-
WORKSPACE
public static final LayoutComponentType WORKSPACE
-
WORKSPACE_FRAME
public static final LayoutComponentType WORKSPACE_FRAME
-
CHILD_WINDOW
public static final LayoutComponentType CHILD_WINDOW
-
-
Method Detail
-
values
public static LayoutComponentType[] 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 (LayoutComponentType c : LayoutComponentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LayoutComponentType 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
-
fromString
public static LayoutComponentType fromString(String name)
-
getName
public String getName()
-
-