org.eclipse.gmt.umlx.mm.editor.icons
Enum MmEditorIcons

java.lang.Object
  extended by java.lang.Enum<MmEditorIcons>
      extended by org.eclipse.gmt.umlx.mm.editor.icons.MmEditorIcons
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MmEditorIcons>

public enum MmEditorIcons
extends java.lang.Enum<MmEditorIcons>

MmEditorIcons is a type-safe enumeration of the same-named GIF files in the same folder as this enumeration.


Enum Constant Summary
AttributeLetter
           
ClassLetter
           
CreateEAssociation
           
CreateEAssociation1
           
CreateEAttribute
           
CreateEAttribution
           
CreateEClass
           
CreateEDataType
           
CreateEEnum
           
CreateEEnumLiteral
           
CreateEInheritance
           
CreateEOperation
           
CreateEPackage
           
CreateEParameter
           
CreateEReference
           
EAssociation
           
EAttribute
           
EClass
           
EDataType
           
EEnum
           
EEnumLiteral
           
EInheritance
           
EnumLetter
           
EOperation
           
EPackage
           
EParameter
           
EReference
           
InterfaceLetter
           
MM_SHEET
           
 
Method Summary
static MmEditorIcons valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MmEditorIcons[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AttributeLetter

public static final MmEditorIcons AttributeLetter

ClassLetter

public static final MmEditorIcons ClassLetter

CreateEAssociation

public static final MmEditorIcons CreateEAssociation

CreateEAssociation1

public static final MmEditorIcons CreateEAssociation1

CreateEAttribute

public static final MmEditorIcons CreateEAttribute

CreateEAttribution

public static final MmEditorIcons CreateEAttribution

CreateEClass

public static final MmEditorIcons CreateEClass

CreateEDataType

public static final MmEditorIcons CreateEDataType

CreateEEnum

public static final MmEditorIcons CreateEEnum

CreateEEnumLiteral

public static final MmEditorIcons CreateEEnumLiteral

CreateEInheritance

public static final MmEditorIcons CreateEInheritance

CreateEOperation

public static final MmEditorIcons CreateEOperation

CreateEPackage

public static final MmEditorIcons CreateEPackage

CreateEParameter

public static final MmEditorIcons CreateEParameter

CreateEReference

public static final MmEditorIcons CreateEReference

EAssociation

public static final MmEditorIcons EAssociation

EAttribute

public static final MmEditorIcons EAttribute

EClass

public static final MmEditorIcons EClass

EDataType

public static final MmEditorIcons EDataType

EEnum

public static final MmEditorIcons EEnum

EEnumLiteral

public static final MmEditorIcons EEnumLiteral

EInheritance

public static final MmEditorIcons EInheritance

EOperation

public static final MmEditorIcons EOperation

EPackage

public static final MmEditorIcons EPackage

EParameter

public static final MmEditorIcons EParameter

EReference

public static final MmEditorIcons EReference

EnumLetter

public static final MmEditorIcons EnumLetter

InterfaceLetter

public static final MmEditorIcons InterfaceLetter

MM_SHEET

public static final MmEditorIcons MM_SHEET
Method Detail

values

public static final MmEditorIcons[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(MmEditorIcons c : MmEditorIcons.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static MmEditorIcons 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 name