net.xqhs.graphs.util
Enum Debug.D_G

java.lang.Object
  extended by java.lang.Enum<Debug.D_G>
      extended by net.xqhs.graphs.util.Debug.D_G
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Debug.D_G>, net.xqhs.util.logging.Debug.DebugItem
Enclosing class:
Debug

public static enum Debug.D_G
extends java.lang.Enum<Debug.D_G>
implements net.xqhs.util.logging.Debug.DebugItem

Debug items for graphs and graph matching.

Author:
Andrei Olaru

Enum Constant Summary
D_CURRENT
          Debug item for the current issue at hand.
D_MATCHING_INITIAL
          Debug for the initial matching process.
D_MATCHING_PROGRESS
          Debug for the progress of incremental matching.
 
Field Summary
(package private)  boolean isset
          Activation state.
 
Method Summary
 boolean toBool()
           
static Debug.D_G valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Debug.D_G[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

D_MATCHING_INITIAL

public static final Debug.D_G D_MATCHING_INITIAL
Debug for the initial matching process.


D_MATCHING_PROGRESS

public static final Debug.D_G D_MATCHING_PROGRESS
Debug for the progress of incremental matching.


D_CURRENT

public static final Debug.D_G D_CURRENT
Debug item for the current issue at hand.

Field Detail

isset

boolean isset
Activation state.

Method Detail

values

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

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

valueOf

public static Debug.D_G 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
java.lang.NullPointerException - if the argument is null

toBool

public boolean toBool()
Specified by:
toBool in interface net.xqhs.util.logging.Debug.DebugItem