static Condition | 
Conditions.alwaysFalse() | 
 Returns a Condition that is always false. 
 | 
static Condition | 
Conditions.alwaysTrue() | 
 Returns a Condition that is always true. 
 | 
static Condition | 
Conditions.and(Condition c1,
   Condition c2) | 
 Returns a Condition that is true when two other conditions are both true. 
 | 
static Condition | 
Conditions.cancelInviteCount(int delta) | 
 Returns a Conditions that is true when the CancelInviteCount property has incremented the given number of times. 
 | 
static Condition | 
Conditions.cancelInviteCountAbsolute(long newValue) | 
 Returns a Conditions that is true when the CancelInviteCount property has become the provided count. 
 | 
static Condition | 
Conditions.changeCount(int delta) | 
  | 
static Condition | 
Conditions.changeCount(BareSession session,
           int delta) | 
 Returns a Conditions that is true when the ChangeCount property has incremented the given number of times. 
 | 
static Condition | 
Conditions.changeCountAbsolute(long newValue) | 
  | 
static Condition | 
Conditions.cursorAt(BareScreen screen,
        com.seagullsw.common.toolbox.geometry.Point point) | 
 Returns a Condition that is true when the cursor is at a particular screen location. 
 | 
static Condition | 
Conditions.cursorAt(com.seagullsw.common.toolbox.geometry.Point point) | 
  | 
static Condition | 
Conditions.cursorIn(BareScreen screen,
        com.seagullsw.common.toolbox.geometry.Rectangle area) | 
 Returns a Condition that is true when the cursor is in a particular screen area. 
 | 
static Condition | 
Conditions.cursorIn(Session session,
        String fieldName) | 
 Returns a Condition that is true when the cursor is in a particular field. 
 | 
static Condition | 
Conditions.cursorIn(Session session,
        String fieldName,
        int index) | 
 Returns a Condition that is true when the cursor is in a particular subfield of a multi-line or column field. 
 | 
static Condition | 
Conditions.cursorIn(com.seagullsw.common.toolbox.geometry.Rectangle area) | 
  | 
static Condition | 
Conditions.cursorIn(String fieldName) | 
  | 
static Condition | 
Conditions.cursorIn(String fieldName,
        int index) | 
  | 
static Condition | 
Conditions.cursorIsVisible() | 
  | 
static Condition | 
Conditions.cursorIsVisible(BareScreen screen) | 
 Returns a Condition that is true when the cursor is visible. 
 | 
static Condition | 
Conditions.cursorMoved() | 
 Returns a Condition that is true whenever the cursor has moved. 
 | 
static Condition | 
Conditions.emulatorState(BareScreen screen,
             com.seagullsw.common.emulator.physical.base.screen.EmulatorState emulatorState) | 
 Returns a Condition that is true when the emulator's state equals the provided emulator state. 
 | 
static Condition | 
Conditions.emulatorState(com.seagullsw.common.emulator.physical.base.screen.EmulatorState emulatorState) | 
 Returns a Condition that is true when the emulator's state equals the provided emulator state. 
 | 
static Condition | 
Conditions.emulatorState(com.seagullsw.common.emulator.physical.base.screen.EmulatorState emulatorState,
             boolean includeChangeCount) | 
 Returns a Condition that is true when the emulator's state equals the provided emulator state. 
 | 
static Condition | 
Conditions.inputInhibitDown() | 
 Deprecated. 
 | 
static Condition | 
Conditions.inputInhibitDown(BareScreen screen) | 
 Deprecated.
 
 | 
static Condition | 
Conditions.inputReady() | 
 Returns a Condition that is true when the session is ready for input. 
 | 
static Condition | 
Conditions.inputReady(BareSession session) | 
 Returns a Condition that is true when the session is ready for input. 
 | 
static Condition | 
Conditions.keyboardRestoreCountAtLeast(int value) | 
 Returns a Condition that is true when the 3270-style keyboard restore count is greater or equals to a particular value. 
 | 
static Condition | 
Conditions.keyboardRestoreCountEquals(int value) | 
 Returns a Condition that is true when the 3270-style keyboard restore count equals a particular value. 
 | 
static Condition | 
Conditions.keyboardRestoreCountEquals(BareScreen screen,
                          int value) | 
 Returns a Condition that is true when the 3270-style keyboard restore count equals a particular value. 
 | 
static Condition | 
Conditions.lineContains(int line,
            String string) | 
 Returns a Condition that is true when the screen contains a particular string anywhere on a particular line (zero-based). 
 | 
static Condition | 
Conditions.not(Condition condition) | 
 Returns a Condition that is true when the given condition is false. 
 | 
static Condition | 
Conditions.or(Condition c1,
  Condition c2) | 
 Returns a Condition that is true when either of two other conditions are true. 
 | 
static Condition | 
Conditions.screenContains(String string) | 
 Returns a Condition that is true when the screen contains a particular string anywhere on the screen. 
 | 
static Condition | 
Conditions.screenIdentified() | 
 Returns a Condition that is true when the current screen is identified. 
 | 
static Condition | 
Conditions.screenNamed(Session session,
           String screenName) | 
 Returns a Condition that is true when the current screen name matches the given name. 
 | 
static Condition | 
Conditions.screenNamed(Session session,
           List<String> screenNames) | 
 Returns a Condition that is true when the current screen name matches any one of a given list of names. 
 | 
static Condition | 
Conditions.screenNamed(String screenName) | 
  | 
static Condition | 
Conditions.screenNamed(String... screenNames) | 
  | 
static Condition | 
Conditions.screenNamed(List<String> screenNames) | 
  | 
static Condition | 
Conditions.screenNotNamed(String screenName) | 
  | 
static Condition | 
Conditions.stringAtEquals(com.seagullsw.common.toolbox.geometry.Point aPoint,
              int length,
              String value) | 
 Returns a Condition that is true when the screen contains a particular value at a particular location. 
 | 
static Condition | 
Conditions.stringBeforeCursorEquals(String value) | 
 Returns a Condition that is true when the screen contents just to the left of the cursor match a given value. 
 |