public static enum Graphics.CanvasData extends Enum<Graphics.CanvasData>
| Enum Constant and Description |
|---|
canvas |
canvasData |
| Modifier and Type | Method and Description |
|---|---|
static Graphics.CanvasData |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Graphics.CanvasData[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Graphics.CanvasData canvasData
public static final Graphics.CanvasData canvas
public static Graphics.CanvasData[] values()
for (Graphics.CanvasData c : Graphics.CanvasData.values()) System.out.println(c);
public static Graphics.CanvasData 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 © 2021. All rights reserved.