jebl.gui.trees.treeviewer.painters
Enum BasicLabelPainter.PainterIntent
java.lang.Object
java.lang.Enum<BasicLabelPainter.PainterIntent>
jebl.gui.trees.treeviewer.painters.BasicLabelPainter.PainterIntent
- All Implemented Interfaces:
- Serializable, Comparable<BasicLabelPainter.PainterIntent>
- Enclosing class:
- BasicLabelPainter
public static enum BasicLabelPainter.PainterIntent
- extends Enum<BasicLabelPainter.PainterIntent>
NODE
public static final BasicLabelPainter.PainterIntent NODE
BRANCH
public static final BasicLabelPainter.PainterIntent BRANCH
TIP
public static final BasicLabelPainter.PainterIntent TIP
values
public static final BasicLabelPainter.PainterIntent[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(BasicLabelPainter.PainterIntent c : BasicLabelPainter.PainterIntent.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static BasicLabelPainter.PainterIntent valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name