public enum EADiagramLabelKind extends Enum<EADiagramLabelKind>
Enum Constant and Description |
---|
ILHS
The 'Realized Item Source' literal object.
|
IRHS
The 'Realized Item Destination' literal object.
|
LLB
The 'Source Bottom Label' literal object.
|
LLT
The 'Source Top Label' literal object.
|
LMB
The 'Middle Bottom Label' literal object.
|
LMT
The 'Middle Top Label' literal object.
|
LRB
The 'Target Bottom Label' literal object.
|
LRT
The 'Target Top Label' literal object.
|
Modifier and Type | Method and Description |
---|---|
static EADiagramLabelKind |
fromString(String name)
Takes a string and returns the matching enum constant
This method returns null instead of throwing an IllegalArgumentException, as
EADiagramLabelKind.valueOf(String) does. |
String |
getLabel() |
static EADiagramLabelKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EADiagramLabelKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EADiagramLabelKind LLB
public static final EADiagramLabelKind LLT
public static final EADiagramLabelKind LMT
public static final EADiagramLabelKind LMB
public static final EADiagramLabelKind LRT
public static final EADiagramLabelKind LRB
public static final EADiagramLabelKind IRHS
public static final EADiagramLabelKind ILHS
public static EADiagramLabelKind[] values()
for (EADiagramLabelKind c : EADiagramLabelKind.values()) System.out.println(c);
public static EADiagramLabelKind 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 nullpublic String getLabel()
public static EADiagramLabelKind fromString(String name)
This method returns null instead of throwing an IllegalArgumentException, as
EADiagramLabelKind.valueOf(String)
does.
name
- A string containing the name of the enum constant to be returned.