public static enum Link.LinkType extends java.lang.Enum<Link.LinkType>
| Enum Constant and Description |
|---|
AGGREGATION |
COMPOSITION |
INHERITANCE |
STRONG |
WEAK |
| Modifier and Type | Method and Description |
|---|---|
static Link.LinkType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Link.LinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Link.LinkType STRONG
public static final Link.LinkType WEAK
public static final Link.LinkType COMPOSITION
public static final Link.LinkType AGGREGATION
public static final Link.LinkType INHERITANCE
public static Link.LinkType[] values()
for (Link.LinkType c : Link.LinkType.values()) System.out.println(c);
public static Link.LinkType 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 null