Package com.nomagic.magicdraw.uimodeling
Enum UIPrototypingProfile.IconsEnum
- java.lang.Object
-
- java.lang.Enum<UIPrototypingProfile.IconsEnum>
-
- com.nomagic.magicdraw.uimodeling.UIPrototypingProfile.IconsEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UIPrototypingProfile.IconsEnum>
- Enclosing class:
- UIPrototypingProfile
public static enum UIPrototypingProfile.IconsEnum extends java.lang.Enum<UIPrototypingProfile.IconsEnum>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UIPrototypingProfile.IconsEnum
from(java.lang.Object o)
java.lang.String
getText()
static UIPrototypingProfile.IconsEnum
toEnum(EnumerationLiteral literal)
EnumerationLiteral
toEnumerationLiteral(UIPrototypingProfile profile, UIPrototypingProfile.IconsEnum anEnum)
static UIPrototypingProfile.IconsEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UIPrototypingProfile.IconsEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOM
public static final UIPrototypingProfile.IconsEnum CUSTOM
-
CLOSE
public static final UIPrototypingProfile.IconsEnum CLOSE
-
COPY
public static final UIPrototypingProfile.IconsEnum COPY
-
CUT
public static final UIPrototypingProfile.IconsEnum CUT
-
DELETE
public static final UIPrototypingProfile.IconsEnum DELETE
-
NEW
public static final UIPrototypingProfile.IconsEnum NEW
-
OPEN
public static final UIPrototypingProfile.IconsEnum OPEN
-
PASTE
public static final UIPrototypingProfile.IconsEnum PASTE
-
PRINT
public static final UIPrototypingProfile.IconsEnum PRINT
-
REDO
public static final UIPrototypingProfile.IconsEnum REDO
-
SAVE
public static final UIPrototypingProfile.IconsEnum SAVE
-
SEARCH
public static final UIPrototypingProfile.IconsEnum SEARCH
-
UNDO
public static final UIPrototypingProfile.IconsEnum UNDO
-
ZOOM_IN
public static final UIPrototypingProfile.IconsEnum ZOOM_IN
-
ZOOM_OUT
public static final UIPrototypingProfile.IconsEnum ZOOM_OUT
-
-
Method Detail
-
values
public static UIPrototypingProfile.IconsEnum[] 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 (UIPrototypingProfile.IconsEnum c : UIPrototypingProfile.IconsEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UIPrototypingProfile.IconsEnum 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 UIPrototypingProfile.IconsEnum from(@CheckForNull java.lang.Object o)
-
toEnum
@CheckForNull public static UIPrototypingProfile.IconsEnum toEnum(EnumerationLiteral literal)
-
toEnumerationLiteral
@CheckForNull public EnumerationLiteral toEnumerationLiteral(UIPrototypingProfile profile, UIPrototypingProfile.IconsEnum anEnum)
-
-