net.sourceforge.plantuml.cucadiagram
Enum LinkDecor

java.lang.Object
  extended by java.lang.Enum<LinkDecor>
      extended by net.sourceforge.plantuml.cucadiagram.LinkDecor
All Implemented Interfaces:
Serializable, Comparable<LinkDecor>

public enum LinkDecor
extends Enum<LinkDecor>


Enum Constant Summary
AGREGATION
           
ARROW
           
COMPOSITION
           
EXTENDS
           
NONE
           
PLUS
           
SQUARRE
           
 
Method Summary
 String getArrowDot()
           
 int getSize()
           
static LinkDecor valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LinkDecor[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, 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 LinkDecor NONE

EXTENDS

public static final LinkDecor EXTENDS

COMPOSITION

public static final LinkDecor COMPOSITION

AGREGATION

public static final LinkDecor AGREGATION

ARROW

public static final LinkDecor ARROW

PLUS

public static final LinkDecor PLUS

SQUARRE

public static final LinkDecor SQUARRE
Method Detail

values

public static LinkDecor[] 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 (LinkDecor c : LinkDecor.values())
    System.out.println(c);

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

valueOf

public static LinkDecor 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

getArrowDot

public String getArrowDot()

getSize

public int getSize()


Copyright © 2011. All Rights Reserved.