net.sf.urlchecker.events
Enum EventTypes

Package class diagram package EventTypes
java.lang.Object
  extended by java.lang.Enum<EventTypes>
      extended by net.sf.urlchecker.events.EventTypes
All Implemented Interfaces:
Serializable, Comparable<EventTypes>

public enum EventTypes
extends Enum<EventTypes>

The Enum EventTypes.

$Id: EventTypes.java 182 2010-12-13 22:51:53Z georgosn $

Version:
$LastChangedRevision: 182 $
Author:
$LastChangedBy: georgosn $

Enum Constant Summary
END
          The END.
EXCEPTION
          The EXCEPTION.
FORK
          The FORK.
START
          The START.
 
Method Summary
static EventTypes valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EventTypes[] 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

START

public static final EventTypes START
The START.


END

public static final EventTypes END
The END.


FORK

public static final EventTypes FORK
The FORK.


EXCEPTION

public static final EventTypes EXCEPTION
The EXCEPTION.

Method Detail

values

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

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

valueOf

public static EventTypes valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2010 Nikolaos Georgosopoulos. All Rights Reserved.