Enum SwingWindow.Pos
- java.lang.Object
-
- java.lang.Enum<SwingWindow.Pos>
-
- com.inductiveautomation.snap.swing.SwingWindow.Pos
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SwingWindow.Pos>
- Enclosing class:
- SwingWindow
public static enum SwingWindow.Pos extends java.lang.Enum<SwingWindow.Pos>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOTTOM_CENTER
BOTTOM_LEFT
BOTTOM_RIGHT
CENTER
CENTER_LEFT
CENTER_RIGHT
TOP_CENTER
TOP_LEFT
TOP_RIGHT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SwingWindow.Pos
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SwingWindow.Pos[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOP_LEFT
public static final SwingWindow.Pos TOP_LEFT
-
TOP_CENTER
public static final SwingWindow.Pos TOP_CENTER
-
TOP_RIGHT
public static final SwingWindow.Pos TOP_RIGHT
-
CENTER_LEFT
public static final SwingWindow.Pos CENTER_LEFT
-
CENTER
public static final SwingWindow.Pos CENTER
-
CENTER_RIGHT
public static final SwingWindow.Pos CENTER_RIGHT
-
BOTTOM_LEFT
public static final SwingWindow.Pos BOTTOM_LEFT
-
BOTTOM_CENTER
public static final SwingWindow.Pos BOTTOM_CENTER
-
BOTTOM_RIGHT
public static final SwingWindow.Pos BOTTOM_RIGHT
-
-
Method Detail
-
values
public static SwingWindow.Pos[] 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 (SwingWindow.Pos c : SwingWindow.Pos.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SwingWindow.Pos valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-