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 SummaryEnum Constants Enum Constant Description BOTTOM_CENTERBOTTOM_LEFTBOTTOM_RIGHTCENTERCENTER_LEFTCENTER_RIGHTTOP_CENTERTOP_LEFTTOP_RIGHT
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static SwingWindow.PosvalueOf(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_LEFTpublic static final SwingWindow.Pos TOP_LEFT 
 - 
TOP_CENTERpublic static final SwingWindow.Pos TOP_CENTER 
 - 
TOP_RIGHTpublic static final SwingWindow.Pos TOP_RIGHT 
 - 
CENTER_LEFTpublic static final SwingWindow.Pos CENTER_LEFT 
 - 
CENTERpublic static final SwingWindow.Pos CENTER 
 - 
CENTER_RIGHTpublic static final SwingWindow.Pos CENTER_RIGHT 
 - 
BOTTOM_LEFTpublic static final SwingWindow.Pos BOTTOM_LEFT 
 - 
BOTTOM_CENTERpublic static final SwingWindow.Pos BOTTOM_CENTER 
 - 
BOTTOM_RIGHTpublic static final SwingWindow.Pos BOTTOM_RIGHT 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-