public enum RelationType extends java.lang.Enum<RelationType>
Enum Constant and Description |
---|
ASSOC |
COMPOSED |
DEPEND |
EXTENDS |
HAS |
IMPLEMENTS |
NAVASSOC |
NAVCOMPOSED |
NAVHAS |
Modifier and Type | Method and Description |
---|---|
static RelationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RelationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationType ASSOC
public static final RelationType NAVASSOC
public static final RelationType HAS
public static final RelationType NAVHAS
public static final RelationType COMPOSED
public static final RelationType NAVCOMPOSED
public static final RelationType DEPEND
public static final RelationType EXTENDS
public static final RelationType IMPLEMENTS
public static RelationType[] values()
for (RelationType c : RelationType.values()) System.out.println(c);
public static RelationType 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