net.sourceforge.rpgee.utility
Enum SystemMessages

java.lang.Object
  extended by java.lang.Enum<SystemMessages>
      extended by net.sourceforge.rpgee.utility.SystemMessages
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SystemMessages>, Duplicatable, RpgMessage

public enum SystemMessages
extends java.lang.Enum<SystemMessages>
implements RpgMessage


Enum Constant Summary
DEREGISTER_CLIENT
           
REFRESH_CLIENT
           
REGISTER_CLIENT
           
SHUTDOWN
           
START
           
STATUS_CLIENT
           
STATUS_SELF
           
STOP
           
 
Method Summary
 RpgMessage duplicate()
           
 java.lang.Object getMessage()
           
 boolean isFinishedProcessing()
          System messages never complete
 void setFinishedProcessing()
           
static SystemMessages valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SystemMessages[] 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

START

public static final SystemMessages START

REGISTER_CLIENT

public static final SystemMessages REGISTER_CLIENT

DEREGISTER_CLIENT

public static final SystemMessages DEREGISTER_CLIENT

REFRESH_CLIENT

public static final SystemMessages REFRESH_CLIENT

STATUS_CLIENT

public static final SystemMessages STATUS_CLIENT

STATUS_SELF

public static final SystemMessages STATUS_SELF

STOP

public static final SystemMessages STOP

SHUTDOWN

public static final SystemMessages SHUTDOWN
Method Detail

values

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

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

valueOf

public static SystemMessages 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

getMessage

public final java.lang.Object getMessage()
                                  throws RpgMessageException
Specified by:
getMessage in interface RpgMessage
Throws:
RpgMessageException

duplicate

public RpgMessage duplicate()
Specified by:
duplicate in interface Duplicatable
Specified by:
duplicate in interface RpgMessage

isFinishedProcessing

public boolean isFinishedProcessing()
System messages never complete

Specified by:
isFinishedProcessing in interface RpgMessage

setFinishedProcessing

public void setFinishedProcessing()
Specified by:
setFinishedProcessing in interface RpgMessage


Copyright © 2006 An Infinite Number of Monkeys. All Rights Reserved.