jhomenet.commons.service
Enum IService.Status

java.lang.Object
  extended by java.lang.Enum<IService.Status>
      extended by jhomenet.commons.service.IService.Status
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IService.Status>
Enclosing interface:
IService

public static enum IService.Status
extends java.lang.Enum<IService.Status>

The service status.


Enum Constant Summary
ERROR
          Service is an error state.
PAUSED
          Service is paused.
RUNNING
          Service is running.
STOPPED
          Service is stopped.
UNKNOWN
          Service is in an unknown state.
 
Method Summary
static IService.Status valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IService.Status[] 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

RUNNING

public static final IService.Status RUNNING
Service is running.


PAUSED

public static final IService.Status PAUSED
Service is paused.


STOPPED

public static final IService.Status STOPPED
Service is stopped. When a service is stopped it cannot be restarted. Rather a new service should be created and started. In order to halt a service, it should be paused and then later resumed.


UNKNOWN

public static final IService.Status UNKNOWN
Service is in an unknown state.


ERROR

public static final IService.Status ERROR
Service is an error state.

Method Detail

values

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

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

valueOf

public static IService.Status 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


Copyright © 2004-2007 David Irwin. All Rights Reserved.