public enum EffectType extends java.lang.Enum<EffectType>
| Enum Constant and Description |
|---|
BOLD_DOTTED_LINE |
BOLD_LINE_UNDERSCORE |
BOXED |
LINE_UNDERSCORE |
ROUNDED_BOX |
SEARCH_MATCH |
STRIKEOUT |
WAVE_UNDERSCORE |
| Modifier and Type | Method and Description |
|---|---|
static EffectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EffectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EffectType LINE_UNDERSCORE
public static final EffectType WAVE_UNDERSCORE
public static final EffectType BOXED
public static final EffectType STRIKEOUT
public static final EffectType BOLD_LINE_UNDERSCORE
public static final EffectType BOLD_DOTTED_LINE
public static final EffectType SEARCH_MATCH
public static final EffectType ROUNDED_BOX
public static EffectType[] values()
for (EffectType c : EffectType.values()) System.out.println(c);
public static EffectType 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