pmp
Enum InternalMPError.Source

java.lang.Object
  extended by java.lang.Enum<InternalMPError.Source>
      extended by pmp.InternalMPError.Source
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<InternalMPError.Source>
Enclosing class:
InternalMPError

public static enum InternalMPError.Source
extends java.lang.Enum<InternalMPError.Source>


Enum Constant Summary
ABSTRACTMACRO
           
ANALYZER
           
CONFIGDIRECTIVES
           
GUI_GUITOOLS
           
GUI_MAINPANEL
           
INPUTQUEUE
           
MACROLIST
           
MACROLISTITEM
           
MACROPROCESOR
           
REGEX_NODEPOINTER
           
REGEX_PATTERNCOMPILER
           
REGEXPS
           
 
Method Summary
(package private)  int getSource()
           
static InternalMPError.Source valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static InternalMPError.Source[] 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

ANALYZER

public static final InternalMPError.Source ANALYZER

MACROLIST

public static final InternalMPError.Source MACROLIST

REGEXPS

public static final InternalMPError.Source REGEXPS

MACROPROCESOR

public static final InternalMPError.Source MACROPROCESOR

INPUTQUEUE

public static final InternalMPError.Source INPUTQUEUE

CONFIGDIRECTIVES

public static final InternalMPError.Source CONFIGDIRECTIVES

ABSTRACTMACRO

public static final InternalMPError.Source ABSTRACTMACRO

MACROLISTITEM

public static final InternalMPError.Source MACROLISTITEM

GUI_MAINPANEL

public static final InternalMPError.Source GUI_MAINPANEL

GUI_GUITOOLS

public static final InternalMPError.Source GUI_GUITOOLS

REGEX_NODEPOINTER

public static final InternalMPError.Source REGEX_NODEPOINTER

REGEX_PATTERNCOMPILER

public static final InternalMPError.Source REGEX_PATTERNCOMPILER
Method Detail

values

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

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

valueOf

public static InternalMPError.Source 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

getSource

int getSource()