public static enum WindowsCornerIcon.Corner extends Enum<WindowsCornerIcon.Corner>
Enum Constant and Description |
---|
LOWER_RIGHT
Draws the icon boxes in the lower right corner.
|
UPPER_LEFT
Draws the icon boxes in the upper left corner.
|
Modifier and Type | Method and Description |
---|---|
static WindowsCornerIcon.Corner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WindowsCornerIcon.Corner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowsCornerIcon.Corner UPPER_LEFT
public static final WindowsCornerIcon.Corner LOWER_RIGHT
public static WindowsCornerIcon.Corner[] values()
for (WindowsCornerIcon.Corner c : WindowsCornerIcon.Corner.values()) System.out.println(c);
public static WindowsCornerIcon.Corner 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 nullCopyright © 2006–2016 Dirk Lemmermann Software & Consulting. All rights reserved.