public enum AssociationPath extends Enum<AssociationPath>
| Enum Constant and Description |
|---|
many
Two model elements are associated through any number of multi-valued (many)
reference properties
|
many_binary
Two model elements are associated through two multi-valued (many) reference
properties
|
many_nary
Two model elements are associated through more-than-three multi-valued
(many) reference properties
|
many_ternary
Two model elements are associated through three multi-valued (many)
reference properties
|
many_unary
Two model elements are associated through one-and-only-one multi-valued
(many) reference property
|
singular
Two model elements are associated through any number of singular reference
properties
|
singular_binary
Two model elements are associated through two singular reference properties
|
singular_nary
Two model elements are associated through more-than-three singular
reference properties
|
singular_ternary
Two model elements are associated through three singular reference
properties
|
singular_unary
Two model elements are associated through one-and-only-one singular
reference property
|
| Modifier and Type | Method and Description |
|---|---|
static AssociationPath |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssociationPath[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssociationPath singular
public static final AssociationPath singular_unary
public static final AssociationPath singular_binary
public static final AssociationPath singular_ternary
public static final AssociationPath singular_nary
public static final AssociationPath many
public static final AssociationPath many_unary
public static final AssociationPath many_binary
public static final AssociationPath many_ternary
public static final AssociationPath many_nary
public static AssociationPath[] values()
for (AssociationPath c : AssociationPath.values()) System.out.println(c);
public static AssociationPath valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.