public static enum ZoomButton.ZoomIcon extends java.lang.Enum<ZoomButton.ZoomIcon>
| Enum Constant and Description |
|---|
IN
Zoom icon for zoom in button.
|
OUT
Zoom icon for zoom out button.
|
| Modifier and Type | Method and Description |
|---|---|
static ZoomButton.ZoomIcon |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ZoomButton.ZoomIcon[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZoomButton.ZoomIcon IN
public static final ZoomButton.ZoomIcon OUT
public static ZoomButton.ZoomIcon[] values()
for (ZoomButton.ZoomIcon c : ZoomButton.ZoomIcon.values()) System.out.println(c);
public static ZoomButton.ZoomIcon 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