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, valueOfpaintpublic static final EffectPainter LINE_UNDERSCORE
EffectType.LINE_UNDERSCOREpublic static final EffectPainter BOLD_LINE_UNDERSCORE
EffectType.BOLD_LINE_UNDERSCOREpublic static final EffectPainter BOLD_DOTTED_UNDERSCORE
EffectType.BOLD_DOTTED_LINEpublic static final EffectPainter WAVE_UNDERSCORE
EffectType.WAVE_UNDERSCOREpublic static final EffectPainter STRIKE_THROUGH
EffectType.STRIKEOUTpublic 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