|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RelationType>
ucot.model.relation.RelationType
public enum RelationType
Enum Constant Summary | |
---|---|
CONTAINS
Something contains something other. |
|
INFLUENCE_BY_METHOD
Something is influenced by some method. |
|
INHERITS
Something is inherited from something else. |
|
INSTANCEOF
Someting is intance of something else. |
|
OTHER
Other type relation that is not yet spesified any further. |
Method Summary | |
---|---|
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're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RelationType CONTAINS
public static final RelationType INFLUENCE_BY_METHOD
public static final RelationType INHERITS
public static final RelationType INSTANCEOF
public static final RelationType OTHER
Method Detail |
---|
public static final 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 name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |