Package com.nomagic.uml2
Enum MagicDrawProfile.relationMapLayoutEnumerationEnum
- java.lang.Object
-
- java.lang.Enum<MagicDrawProfile.relationMapLayoutEnumerationEnum>
-
- com.nomagic.uml2.MagicDrawProfile.relationMapLayoutEnumerationEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MagicDrawProfile.relationMapLayoutEnumerationEnum>
- Enclosing class:
- MagicDrawProfile
public static enum MagicDrawProfile.relationMapLayoutEnumerationEnum extends java.lang.Enum<MagicDrawProfile.relationMapLayoutEnumerationEnum>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MagicDrawProfile.relationMapLayoutEnumerationEnum
from(java.lang.Object o)
java.lang.String
getText()
static MagicDrawProfile.relationMapLayoutEnumerationEnum
toEnum(EnumerationLiteral literal)
static EnumerationLiteral
toEnumerationLiteral(MagicDrawProfile profile, MagicDrawProfile.relationMapLayoutEnumerationEnum anEnum)
static MagicDrawProfile.relationMapLayoutEnumerationEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MagicDrawProfile.relationMapLayoutEnumerationEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RADIAL
public static final MagicDrawProfile.relationMapLayoutEnumerationEnum RADIAL
-
TREE
public static final MagicDrawProfile.relationMapLayoutEnumerationEnum TREE
-
-
Method Detail
-
values
public static MagicDrawProfile.relationMapLayoutEnumerationEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MagicDrawProfile.relationMapLayoutEnumerationEnum c : MagicDrawProfile.relationMapLayoutEnumerationEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MagicDrawProfile.relationMapLayoutEnumerationEnum valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getText
public java.lang.String getText()
-
from
@CheckForNull public static MagicDrawProfile.relationMapLayoutEnumerationEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static MagicDrawProfile.relationMapLayoutEnumerationEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public static EnumerationLiteral toEnumerationLiteral(MagicDrawProfile profile, MagicDrawProfile.relationMapLayoutEnumerationEnum anEnum)
-
-