public enum AssociationTypes extends java.lang.Enum<AssociationTypes>
| Enum Constant and Description |
|---|
AGGREGATION |
ASSOCIATION |
COMPOSITION |
DEPENDENCY |
EDGE |
GENERALISATION |
IMPLEMENTS |
UNDIRECTIONAL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
static boolean |
isEdge(AssociationTypes value) |
static java.lang.Object |
isImplements(AssociationTypes value) |
java.lang.String |
toString() |
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 final AssociationTypes DEPENDENCY
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(AssociationTypes value)
public static java.lang.Object isImplements(AssociationTypes value)
public java.lang.String toString()
toString in class java.lang.Enum<AssociationTypes>