|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<JmiAssocMapping> org.eigenbase.jmi.JmiAssocMapping
public enum JmiAssocMapping
JmiAssocMapping enumerates the possible ways an association edge can be mapped when a JMI graph is being transformed.
Enum Constant Summary | |
---|---|
CONTRACTION
The two ends of the association should be contracted into one vertex in the transformed graph. |
|
COPY
The association edge should be preserved in the transformed graph. |
|
HIERARCHY
The association edge should be interpreted as a hierarchical structure to be superimposed on the graph, with the source as parent and the target as child. |
|
REMOVAL
The association should be left out of the transformed graph. |
|
REVERSAL
The association edge should be preserved in the transformed graph, but its direction should be reversed. |
Method Summary | |
---|---|
static JmiAssocMapping |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static JmiAssocMapping[] |
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 JmiAssocMapping REMOVAL
public static final JmiAssocMapping COPY
public static final JmiAssocMapping REVERSAL
public static final JmiAssocMapping CONTRACTION
public static final JmiAssocMapping HIERARCHY
Method Detail |
---|
public static final JmiAssocMapping[] values()
for(JmiAssocMapping c : JmiAssocMapping.values()) System.out.println(c);
public static JmiAssocMapping valueOf(String name)
name
- the name of the enum constant to be returned.
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 |