jebl.gui.trees.treeviewer.painters
Enum BasicLabelPainter.PainterIntent

java.lang.Object
  extended by java.lang.Enum<BasicLabelPainter.PainterIntent>
      extended by 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>


Enum Constant Summary
BRANCH
           
NODE
           
TIP
           
 
Method Summary
static BasicLabelPainter.PainterIntent valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BasicLabelPainter.PainterIntent[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NODE

public static final BasicLabelPainter.PainterIntent NODE

BRANCH

public static final BasicLabelPainter.PainterIntent BRANCH

TIP

public static final BasicLabelPainter.PainterIntent TIP
Method Detail

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