public enum EffectPainter extends java.lang.Enum<EffectPainter> implements RegionPainter<java.awt.Font>
RegionPainter.Alpha, RegionPainter.Image
Enum Constant and Description |
---|
BOLD_DOTTED_UNDERSCORE |
BOLD_LINE_UNDERSCORE |
LINE_UNDERSCORE |
STRIKE_THROUGH |
WAVE_UNDERSCORE |
Modifier and Type | Method and Description |
---|---|
static EffectPainter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EffectPainter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
paint
public static final EffectPainter LINE_UNDERSCORE
EffectType.LINE_UNDERSCORE
public static final EffectPainter BOLD_LINE_UNDERSCORE
EffectType.BOLD_LINE_UNDERSCORE
public static final EffectPainter BOLD_DOTTED_UNDERSCORE
EffectType.BOLD_DOTTED_LINE
public static final EffectPainter WAVE_UNDERSCORE
EffectType.WAVE_UNDERSCORE
public static final EffectPainter STRIKE_THROUGH
EffectType.STRIKEOUT
public static EffectPainter[] values()
for (EffectPainter c : EffectPainter.values()) System.out.println(c);
public static EffectPainter 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