de.upb.swtpra05.group03.shuttle.shared
Class OrderState.ExecutionState

java.lang.Object
  extended byde.upb.swtpra05.group03.shuttle.shared.OrderState.ExecutionState
Enclosing class:
OrderState

public abstract class OrderState.ExecutionState
extends java.lang.Object

Abstract class which contains constant int values to identify any possible execution state of an order

Version:
$Revision: 1.3 $

Field Summary
static int ASSIGNED
          Constant which indetifies orders that are assigned to the shuttle
static int DONE
          Constant which indetifies orders that are done
static int ERROR
          Constant which identifies erroneous execution states
static int LOAD
          Constant which indetifies orders the shuttle has currently loaded
static int MAXVALUE
          Constant which holds the maximal int value of all allowed execution states
static int MINVALUE
          Constant which holds the minimal int value of all allowed execution states
static int REJECTED
          Constant which indetifies orders that were rejected
static int UNASSIGNED
          Constant which indetifies orders that are assigned to the shuttle
static int UNKNOWN
          Constant which identifies orders that aren't classified yet
static int UNLOAD
          Constant which indetifies orders the shuttle has just unloaded
 
Constructor Summary
OrderState.ExecutionState()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MINVALUE

public static final int MINVALUE
Constant which holds the minimal int value of all allowed execution states

See Also:
Constant Field Values

MAXVALUE

public static final int MAXVALUE
Constant which holds the maximal int value of all allowed execution states

See Also:
Constant Field Values

UNKNOWN

public static final int UNKNOWN
Constant which identifies orders that aren't classified yet

See Also:
Constant Field Values

ERROR

public static final int ERROR
Constant which identifies erroneous execution states

See Also:
Constant Field Values

UNASSIGNED

public static final int UNASSIGNED
Constant which indetifies orders that are assigned to the shuttle

See Also:
Constant Field Values

ASSIGNED

public static final int ASSIGNED
Constant which indetifies orders that are assigned to the shuttle

See Also:
Constant Field Values

LOAD

public static final int LOAD
Constant which indetifies orders the shuttle has currently loaded

See Also:
Constant Field Values

UNLOAD

public static final int UNLOAD
Constant which indetifies orders the shuttle has just unloaded

See Also:
Constant Field Values

DONE

public static final int DONE
Constant which indetifies orders that are done

See Also:
Constant Field Values

REJECTED

public static final int REJECTED
Constant which indetifies orders that were rejected

See Also:
Constant Field Values
Constructor Detail

OrderState.ExecutionState

public OrderState.ExecutionState()