public static enum JXFrame.StartPosition extends java.lang.Enum<JXFrame.StartPosition>
| Enum Constant and Description |
|---|
CenterInParent |
CenterInScreen |
Manual |
| Modifier and Type | Method and Description |
|---|---|
static JXFrame.StartPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JXFrame.StartPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JXFrame.StartPosition CenterInScreen
public static final JXFrame.StartPosition CenterInParent
public static final JXFrame.StartPosition Manual
public static JXFrame.StartPosition[] values()
for (JXFrame.StartPosition c : JXFrame.StartPosition.values()) System.out.println(c);
public static JXFrame.StartPosition valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null