public static enum PaintStyle.PaintModifier extends java.lang.Enum<PaintStyle.PaintModifier>
Enum Constant and Description |
---|
DARKEN
darken the paint/filling
|
DARKEN_LESS
darken (...
|
LIGHTEN
lighten the paint/filling
|
LIGHTEN_LESS
lighten (...
|
NONE
don't use any paint/fill
|
NORM
use the paint/filling as-is
|
Modifier and Type | Method and Description |
---|---|
static PaintStyle.PaintModifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaintStyle.PaintModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaintStyle.PaintModifier NONE
public static final PaintStyle.PaintModifier NORM
public static final PaintStyle.PaintModifier LIGHTEN
public static final PaintStyle.PaintModifier LIGHTEN_LESS
public static final PaintStyle.PaintModifier DARKEN
public static final PaintStyle.PaintModifier DARKEN_LESS
public static PaintStyle.PaintModifier[] values()
for (PaintStyle.PaintModifier c : PaintStyle.PaintModifier.values()) System.out.println(c);
public static PaintStyle.PaintModifier 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 2021 The Apache Software Foundation or its licensors, as applicable.