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

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

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

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

Version:
$Revision: 1.3 $

Field Summary
static int AVAILABLE
          Constant which identifies orders that are newly available
static int DONE
          Constant which identifies orders which are done
static int ERROR
          Constant which identifies erroneous negotiation states
static int MAXVALUE
          Constant which holds the maximal int value of all allowed negotiation states
static int MINVALUE
          Constant which holds the minimal int value of all allowed negotiation states
static int OFFERSENT
          Constant which identifies orders for which an offer was sent
static int UNKNOWN
          Constant which identifies orders with an unknown negotiation state
 
Constructor Summary
OrderState.NegotiationState()
           
 
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 negotiation states

See Also:
Constant Field Values

MAXVALUE

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

See Also:
Constant Field Values

UNKNOWN

public static final int UNKNOWN
Constant which identifies orders with an unknown negotiation state

See Also:
Constant Field Values

ERROR

public static final int ERROR
Constant which identifies erroneous negotiation states

See Also:
Constant Field Values

AVAILABLE

public static final int AVAILABLE
Constant which identifies orders that are newly available

See Also:
Constant Field Values

OFFERSENT

public static final int OFFERSENT
Constant which identifies orders for which an offer was sent

See Also:
Constant Field Values

DONE

public static final int DONE
Constant which identifies orders which are done

See Also:
Constant Field Values
Constructor Detail

OrderState.NegotiationState

public OrderState.NegotiationState()