com.mindfusion.diagramming
Class ArrowHead

java.lang.Object
  extended by com.mindfusion.diagramming.ArrowHead

public class ArrowHead
extends java.lang.Object

The members of this enumeration specify the shape of the arrowheads displayed at the end points of an arrow. Use these constants as parameters of the DiagramLink.setHeadShape(int), DiagramLink.setBaseShape(int) and DiagramLink.setIntermediateShape(int) methods of the DiagramLink class.


Field Summary
static int Arrow
          Use an arrow shape as an arrowhead.
static int BackSlash
          Specifies that the arrowhead shape is a backslash.
static int BowArrow
          Specifies that the arrowhead shape is a bow arrow.
static int Circle
          Specifies that the arrowhead shape is a circle.
static int DefaultFlow
          Specifies that the arrowhead shape is the BPMN "default flow" shape.
static int DoubleArrow
          Specifies that the arrowhead shape is a double arrow.
static int None
          Specifies that no arrowhead shape should be displayed.
static int Pentagon
          Specifies that the arrowhead shape is a pentagon.
static int PointerArrow
          Specifies that the arrowhead shape is a pointer.
static int Quill
          Specifies that the arrowhead shape is a quill.
static int Reversed
          Specifies that the arrowhead shape is a reversed arrow.
static int RevTriangle
          Specifies that the arrowhead shape is a reversed triangle.
static int RevWithCirc
          Specifies that the arrowhead shape is a reversed arrow with a circle.
static int RevWithLine
          Specifies that the arrowhead shape is a reversed arrow with an intersecting line segment.
static int Rhombus
          Specifies that the arrowhead shape is a rhombus.
static int Slash
          Specifies that the arrowhead shape is a slash.
static int Tetragon
          Specifies that the arrowhead shape is a tetragon.
static int Triangle
          Specifies that the arrowhead shape is a triangle.
 
Constructor Summary
ArrowHead()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

None

public static final int None
Specifies that no arrowhead shape should be displayed.

See Also:
Constant Field Values

Arrow

public static final int Arrow
Use an arrow shape as an arrowhead.

See Also:
Constant Field Values

Triangle

public static final int Triangle
Specifies that the arrowhead shape is a triangle.

See Also:
Constant Field Values

Circle

public static final int Circle
Specifies that the arrowhead shape is a circle.

See Also:
Constant Field Values

Tetragon

public static final int Tetragon
Specifies that the arrowhead shape is a tetragon.

See Also:
Constant Field Values

Rhombus

public static final int Rhombus
Specifies that the arrowhead shape is a rhombus.

See Also:
Constant Field Values

BowArrow

public static final int BowArrow
Specifies that the arrowhead shape is a bow arrow.

See Also:
Constant Field Values

PointerArrow

public static final int PointerArrow
Specifies that the arrowhead shape is a pointer.

See Also:
Constant Field Values

Pentagon

public static final int Pentagon
Specifies that the arrowhead shape is a pentagon.

See Also:
Constant Field Values

DoubleArrow

public static final int DoubleArrow
Specifies that the arrowhead shape is a double arrow.

See Also:
Constant Field Values

Reversed

public static final int Reversed
Specifies that the arrowhead shape is a reversed arrow.

See Also:
Constant Field Values

RevTriangle

public static final int RevTriangle
Specifies that the arrowhead shape is a reversed triangle.

See Also:
Constant Field Values

Quill

public static final int Quill
Specifies that the arrowhead shape is a quill.

See Also:
Constant Field Values

RevWithLine

public static final int RevWithLine
Specifies that the arrowhead shape is a reversed arrow with an intersecting line segment.

See Also:
Constant Field Values

RevWithCirc

public static final int RevWithCirc
Specifies that the arrowhead shape is a reversed arrow with a circle.

See Also:
Constant Field Values

BackSlash

public static final int BackSlash
Specifies that the arrowhead shape is a backslash.

See Also:
Constant Field Values

Slash

public static final int Slash
Specifies that the arrowhead shape is a slash.

See Also:
Constant Field Values

DefaultFlow

public static final int DefaultFlow
Specifies that the arrowhead shape is the BPMN "default flow" shape.

See Also:
Constant Field Values
Constructor Detail

ArrowHead

public ArrowHead()