java.io.Serializable
, java.lang.Comparable<ReferenceType>
public enum ReferenceType extends java.lang.Enum<ReferenceType>
Enum Constant | Description |
---|---|
AGGREGATION |
Aggregationen sind eine spezielle Form von gerichteten Assoziationen, bei der die referenzierten Objekte Teile des
referenzierenden Aggregats darstellen.
|
ASSOCIATION |
Gerichtete Assoziationen sind im Zusammenhang mit der Konfiguration die einfachste Form der Referenzierung.
|
COMPOSITION |
Kompositionen sind eine spezielle Form von Aggregationen mit existentieller Abhängigkeit der referenzierten
Objekte.
|
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
getValue() |
|
static ReferenceType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ReferenceType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReferenceType ASSOCIATION
public static final ReferenceType AGGREGATION
public static final ReferenceType COMPOSITION
public static ReferenceType[] values()
for (ReferenceType c : ReferenceType.values()) System.out.println(c);
public static ReferenceType 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()