public enum ConceptModelDecoration extends Enum<ConceptModelDecoration>
| Enum Constant and Description |
|---|
AGGREGATION |
COMPOSITION |
EXTENSION |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static ConceptModelDecoration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConceptModelDecoration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConceptModelDecoration NONE
public static final ConceptModelDecoration AGGREGATION
public static final ConceptModelDecoration COMPOSITION
public static final ConceptModelDecoration EXTENSION
public static ConceptModelDecoration[] values()
for (ConceptModelDecoration c : ConceptModelDecoration.values()) System.out.println(c);
public static ConceptModelDecoration 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 © 2018–2021 LF AI & Data Foundation. All rights reserved.