public enum AssociationTypes extends java.lang.Enum<AssociationTypes>
| Enum Constant and Description |
|---|
AGGREGATION |
ASSOCIATION |
COMPOSITION |
EDGE |
GENERALISATION |
IMPLEMENTS |
UNDIRECTIONAL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
static boolean |
isEdge(java.lang.String value) |
static AssociationTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AssociationTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssociationTypes ASSOCIATION
public static final AssociationTypes EDGE
public static final AssociationTypes GENERALISATION
public static final AssociationTypes IMPLEMENTS
public static final AssociationTypes UNDIRECTIONAL
public static final AssociationTypes AGGREGATION
public static final AssociationTypes COMPOSITION
public static AssociationTypes[] values()
for (AssociationTypes c : AssociationTypes.values()) System.out.println(c);
public static AssociationTypes valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()
public static boolean isEdge(java.lang.String value)