org.graphstream.ui.graphicGraph.stylesheet
Enum StyleConstants.ArrowShape

java.lang.Object
  extended by java.lang.Enum<StyleConstants.ArrowShape>
      extended by org.graphstream.ui.graphicGraph.stylesheet.StyleConstants.ArrowShape
All Implemented Interfaces:
Serializable, Comparable<StyleConstants.ArrowShape>
Enclosing class:
StyleConstants

public static enum StyleConstants.ArrowShape
extends Enum<StyleConstants.ArrowShape>

Possible shapes for arrows on edges.


Enum Constant Summary
ARROW
           
CIRCLE
           
DIAMOND
           
IMAGE
           
NONE
           
 
Method Summary
static StyleConstants.ArrowShape valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StyleConstants.ArrowShape[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final StyleConstants.ArrowShape NONE

ARROW

public static final StyleConstants.ArrowShape ARROW

CIRCLE

public static final StyleConstants.ArrowShape CIRCLE

DIAMOND

public static final StyleConstants.ArrowShape DIAMOND

IMAGE

public static final StyleConstants.ArrowShape IMAGE
Method Detail

values

public static StyleConstants.ArrowShape[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (StyleConstants.ArrowShape c : StyleConstants.ArrowShape.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static StyleConstants.ArrowShape 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
NullPointerException - if the argument is null


Copyright © 2012. All Rights Reserved.