atg.b2bcommerce.order.scheduled
Class ScheduledOrderAction

java.lang.Object
  extended by atg.core.util.Enum
      extended by atg.b2bcommerce.order.scheduled.ScheduledOrderAction
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable

public class ScheduledOrderAction
extends Enum

This class represents the enumerated object for ScheduledOrder action.

See Also:
Enum, Serialized Form

Nested Class Summary
static class ScheduledOrderAction.LocaleScheduledOrderActionEditor
           
static class ScheduledOrderAction.ScheduledOrderActionEditor
           
 
Nested classes/interfaces inherited from class atg.core.util.Enum
Enum.EnumEditor, Enum.LocaleEnumEditor
 
Field Summary
static java.lang.String CLASS_VERSION
           
static ScheduledOrderAction CREATE
           
static ScheduledOrderAction DELETE
           
static ScheduledOrderAction SUBMIT
           
static ScheduledOrderAction UPDATE
           
 
Method Summary
static java.util.Iterator getIterator()
          Get an Iterator to iterate over all ScheduledOrderAction objects.
protected  java.lang.Object readResolve()
          This override is necessary to work around what appears to be a JRockit bug--the static initializers for an Enum subclass first referenced on the client via RMI were not being called prior to invoking the superclass readResolve method; i.e., Enum.readResolve.
 
Methods inherited from class atg.core.util.Enum
compareTo, getEnumClassInfo, getOrdinal, iterator, iterator, lookup, lookup, lookup, lookup, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

CLASS_VERSION

public static final java.lang.String CLASS_VERSION
See Also:
Constant Field Values

CREATE

public static final ScheduledOrderAction CREATE

UPDATE

public static final ScheduledOrderAction UPDATE

DELETE

public static final ScheduledOrderAction DELETE

SUBMIT

public static final ScheduledOrderAction SUBMIT
Method Detail

getIterator

public static java.util.Iterator getIterator()
Get an Iterator to iterate over all ScheduledOrderAction objects.

Parameters:
An - iterator to iterate over all ScheduledOrderAction objects.

readResolve

protected java.lang.Object readResolve()
                                throws java.io.ObjectStreamException
This override is necessary to work around what appears to be a JRockit bug--the static initializers for an Enum subclass first referenced on the client via RMI were not being called prior to invoking the superclass readResolve method; i.e., Enum.readResolve. (See bug 73531.) To my knowledge, the specific situation which triggers this problem has not yet occurred with this class but I'm adding this innocuous workaround as a prophylactic measure.

Overrides:
readResolve in class Enum
Throws:
java.io.ObjectStreamException