public static enum DiagramArrows.ArrowType extends Enum<DiagramArrows.ArrowType>
| Enum Constant and Description |
|---|
AGGREGATION |
COMPOSITION |
INHERITS |
NONE |
SIMPLE |
| Modifier and Type | Method and Description |
|---|---|
static DiagramArrows.ArrowType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DiagramArrows.ArrowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiagramArrows.ArrowType NONE
public static final DiagramArrows.ArrowType SIMPLE
public static final DiagramArrows.ArrowType INHERITS
public static final DiagramArrows.ArrowType AGGREGATION
public static final DiagramArrows.ArrowType COMPOSITION
public static DiagramArrows.ArrowType[] values()
for (DiagramArrows.ArrowType c : DiagramArrows.ArrowType.values()) System.out.println(c);
public static DiagramArrows.ArrowType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 vpc open source initiative. All rights reserved.