public static enum IInkDrawCallback.Effect extends java.lang.Enum<IInkDrawCallback.Effect>
Enum Constant and Description |
---|
NORMAL
mark pen
|
PENSTROKE
stroke pen
|
Modifier and Type | Method and Description |
---|---|
static IInkDrawCallback.Effect |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IInkDrawCallback.Effect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IInkDrawCallback.Effect NORMAL
public static final IInkDrawCallback.Effect PENSTROKE
public static IInkDrawCallback.Effect[] values()
for (IInkDrawCallback.Effect c : IInkDrawCallback.Effect.values()) System.out.println(c);
public static IInkDrawCallback.Effect 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