net.refractions.udig.project
Enum MapEvent.MapEventType

java.lang.Object
  extended by java.lang.Enum<MapEvent.MapEventType>
      extended by net.refractions.udig.project.MapEvent.MapEventType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MapEvent.MapEventType>
Enclosing class:
MapEvent

public static enum MapEvent.MapEventType
extends java.lang.Enum<MapEvent.MapEventType>


Enum Constant Summary
ABSTRACT
          Type indicating the abstract of the map has changed.
COLOR_PALETTE
          Type indicating the Colour Palette used by the map has changed.
COLOUR_SCHEME
          Type indicating the Colour Scheme used by the map has changed.
EDIT_MANAGER
          Type indicating the EditManager of the map has changed.
LAYER_FACTORY
          Type indicating the LayerFactory of the map has changed.
MAP_COMMAND
          Type indicating a MapCommand has been executed.
NAME
          Type indicating the name of the map has changed.
NAV_COMMAND
          Type indicating a NavCommand has been executed.
PROJECT
          Type indicating the containing project of the map has changed.
RENDER_MANAGER
          Type indicating the RenderManager of the map has changed.
VIEWPORT_MODEL
          Type indicating the ViewportModel of the map has changed.
 
Method Summary
static MapEvent.MapEventType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MapEvent.MapEventType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PROJECT

public static final MapEvent.MapEventType PROJECT
Type indicating the containing project of the map has changed.


NAME

public static final MapEvent.MapEventType NAME
Type indicating the name of the map has changed.


ABSTRACT

public static final MapEvent.MapEventType ABSTRACT
Type indicating the abstract of the map has changed.


NAV_COMMAND

public static final MapEvent.MapEventType NAV_COMMAND
Type indicating a NavCommand has been executed.


MAP_COMMAND

public static final MapEvent.MapEventType MAP_COMMAND
Type indicating a MapCommand has been executed.


LAYER_FACTORY

public static final MapEvent.MapEventType LAYER_FACTORY
Type indicating the LayerFactory of the map has changed.


VIEWPORT_MODEL

public static final MapEvent.MapEventType VIEWPORT_MODEL
Type indicating the ViewportModel of the map has changed.


EDIT_MANAGER

public static final MapEvent.MapEventType EDIT_MANAGER
Type indicating the EditManager of the map has changed.


RENDER_MANAGER

public static final MapEvent.MapEventType RENDER_MANAGER
Type indicating the RenderManager of the map has changed.


COLOR_PALETTE

public static final MapEvent.MapEventType COLOR_PALETTE
Type indicating the Colour Palette used by the map has changed.


COLOUR_SCHEME

public static final MapEvent.MapEventType COLOUR_SCHEME
Type indicating the Colour Scheme used by the map has changed.

Method Detail

values

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

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

valueOf

public static MapEvent.MapEventType 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