public static enum PutInfo.Put extends Enum<PutInfo.Put>
Enum Constant and Description |
---|
BOTTOM
the mouse is at the bottom
|
CENTER
the mouse is in the center of an area
|
LEFT
the mouse is on the left
|
RIGHT
the mouse is on the right
|
TITLE
the mouse is over a
DockTitle |
TOP
the mouse is on top
|
Modifier and Type | Method and Description |
---|---|
static PutInfo.Put |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PutInfo.Put[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PutInfo.Put TOP
public static final PutInfo.Put LEFT
public static final PutInfo.Put RIGHT
public static final PutInfo.Put BOTTOM
public static final PutInfo.Put CENTER
public static final PutInfo.Put TITLE
DockTitle
public static PutInfo.Put[] values()
for (PutInfo.Put c : PutInfo.Put.values()) System.out.println(c);
public static PutInfo.Put valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null