Class Constants

java.lang.Object
  |
  +--Constants

public class Constants
extends java.lang.Object

In this class all constants are defined that are used at more than one place in the application.


Field Summary
static java.lang.String ACTION_TAG
           
static java.lang.String ACTIONS_TAG
           
static double BP
           
static java.lang.String CONSTRAINT_TAG
           
static java.lang.String CONSTRAINTS_TAG
           
static java.lang.String DEFAULT_FIRST_SITUATION
          The name of the situation that is initially set to the first situation.
static java.lang.String END_PROB_TAG
           
static java.lang.String END_TAG
           
static java.lang.String ENDED
          The ended state of a situation.
static java.lang.String FALSE
          The string that indicates that the start or end conditions of a situation have not been met.
static double MP
           
static java.lang.String NAME_TAG
           
static java.lang.String NEXT_SITUATION_TAG
           
static java.lang.String NEXT_SITUATIONS_TAG
           
static java.lang.String PERFORMED
          The string that indicates that an action has been performed.
static java.lang.String PRIORITY_TAG
           
static java.lang.String PROBABILITY_TAG
           
static java.lang.String SITUATION_TAG
           
static double SP
           
static java.lang.String START_PROB_TAG
           
static java.lang.String START_TAG
           
static java.lang.String STARTED
          The started state of a situation.
static java.lang.String TIMEWINDOW_TAG
           
static java.lang.String TRUE
          The string that indicates that the start or end conditions of a situation have been met.
static java.lang.String UNPERFORMED
          The string that indicates that an action has not been performed.
static double VBP
           
static double VSP
           
static int windowSize
           
 
Constructor Summary
Constants()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DEFAULT_FIRST_SITUATION

public static final java.lang.String DEFAULT_FIRST_SITUATION
The name of the situation that is initially set to the first situation.

See Also:
Constant Field Values

windowSize

public static final int windowSize
See Also:
Constant Field Values

PERFORMED

public static final java.lang.String PERFORMED
The string that indicates that an action has been performed.

See Also:
Constant Field Values

UNPERFORMED

public static final java.lang.String UNPERFORMED
The string that indicates that an action has not been performed.

See Also:
Constant Field Values

TRUE

public static final java.lang.String TRUE
The string that indicates that the start or end conditions of a situation have been met.

See Also:
Constant Field Values

FALSE

public static final java.lang.String FALSE
The string that indicates that the start or end conditions of a situation have not been met.

See Also:
Constant Field Values

STARTED

public static final java.lang.String STARTED
The started state of a situation.

See Also:
Constant Field Values

ENDED

public static final java.lang.String ENDED
The ended state of a situation.

See Also:
Constant Field Values

VSP

public static final double VSP
See Also:
Constant Field Values

SP

public static final double SP
See Also:
Constant Field Values

MP

public static final double MP
See Also:
Constant Field Values

BP

public static final double BP
See Also:
Constant Field Values

VBP

public static final double VBP
See Also:
Constant Field Values

SITUATION_TAG

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

NAME_TAG

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

TIMEWINDOW_TAG

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

NEXT_SITUATIONS_TAG

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

NEXT_SITUATION_TAG

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

CONSTRAINTS_TAG

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

CONSTRAINT_TAG

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

START_PROB_TAG

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

END_PROB_TAG

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

START_TAG

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

END_TAG

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

ACTIONS_TAG

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

ACTION_TAG

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

PROBABILITY_TAG

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

PRIORITY_TAG

public static final java.lang.String PRIORITY_TAG
See Also:
Constant Field Values
Constructor Detail

Constants

public Constants()