public static enum UIUtil.CornerStyle extends java.lang.Enum<UIUtil.CornerStyle>
| Enum Constant and Description |
|---|
MISSING
A NES-like style (to my taste..).
|
ROUNDED
Here's an example of this style:
. |
SQUARE |
| Modifier and Type | Method and Description |
|---|---|
static UIUtil.CornerStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UIUtil.CornerStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UIUtil.CornerStyle SQUARE
public static final UIUtil.CornerStyle ROUNDED
.public static final UIUtil.CornerStyle MISSING

public static UIUtil.CornerStyle[] values()
for (UIUtil.CornerStyle c : UIUtil.CornerStyle.values()) System.out.println(c);
public static UIUtil.CornerStyle 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 nullCopyright © Eben Howard 2012–2022. All rights reserved.