org.eclipse.gmt.umlx.editor.icons
Enum EditorIcons

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

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

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


Enum Constant Summary
Backward
           
CONNECTION
           
CreateGStickyLink
           
CreateGStickyNote
           
CreateLink
           
DUMMY
           
EXPAND_ALL
           
FOLDER
           
Forward
           
GStickyNote
           
IMG_ETOOL_HOME_NAV
           
Link
           
ORPHANAGE
           
RESOURCE
           
RESOURCE_SET
           
SNAP
           
SNAP_DISABLED
           
WITH_ERRORS
           
WITH_LOCK
           
WITH_READ_ONLY
           
WITH_WARNINGS
           
 
Method Summary
static EditorIcons valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EditorIcons[] 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

DUMMY

public static final EditorIcons DUMMY

Backward

public static final EditorIcons Backward

CONNECTION

public static final EditorIcons CONNECTION

CreateGStickyLink

public static final EditorIcons CreateGStickyLink

CreateGStickyNote

public static final EditorIcons CreateGStickyNote

CreateLink

public static final EditorIcons CreateLink

EXPAND_ALL

public static final EditorIcons EXPAND_ALL

FOLDER

public static final EditorIcons FOLDER

Forward

public static final EditorIcons Forward

Link

public static final EditorIcons Link

ORPHANAGE

public static final EditorIcons ORPHANAGE

RESOURCE

public static final EditorIcons RESOURCE

RESOURCE_SET

public static final EditorIcons RESOURCE_SET

SNAP

public static final EditorIcons SNAP

SNAP_DISABLED

public static final EditorIcons SNAP_DISABLED

GStickyNote

public static final EditorIcons GStickyNote

WITH_ERRORS

public static final EditorIcons WITH_ERRORS

WITH_LOCK

public static final EditorIcons WITH_LOCK

WITH_READ_ONLY

public static final EditorIcons WITH_READ_ONLY

WITH_WARNINGS

public static final EditorIcons WITH_WARNINGS

IMG_ETOOL_HOME_NAV

public static final EditorIcons IMG_ETOOL_HOME_NAV
Method Detail

values

public static final EditorIcons[] 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(EditorIcons c : EditorIcons.values())
        System.out.println(c);

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

valueOf

public static EditorIcons 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