Interface AbstractIntegerConditions<T,​C extends AbstractIntegerConditions>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean equalTo​(int value)
      Check that this is equal to given value
      boolean greaterThan​(int value)
      Check that this is greater than given value
      boolean greaterThanOrEqualTo​(int value)
      Check that this is greater than or equal given value
      boolean lessThan​(int value)
      Check that this is less than given value
      boolean lessThanOrEqualTo​(int value)
      Check that this is less than or equal given value
      C not()
      Negates this condition object.
      • Methods inherited from interface org.fluentlenium.core.conditions.Conditions

        verify
    • Method Detail

      • not

        C not()
        Negates this condition object.
        Specified by:
        not in interface Conditions<T>
        Returns:
        a negated condition object
      • equalTo

        boolean equalTo​(int value)
        Check that this is equal to given value
        Parameters:
        value - the value to compare with
        Returns:
        true if is equals, false otherwise
      • lessThan

        boolean lessThan​(int value)
        Check that this is less than given value
        Parameters:
        value - the value to compare with
        Returns:
        true if less than, false otherwise
      • lessThanOrEqualTo

        boolean lessThanOrEqualTo​(int value)
        Check that this is less than or equal given value
        Parameters:
        value - the value to compare with
        Returns:
        true if less than or equal, false otherwise
      • greaterThan

        boolean greaterThan​(int value)
        Check that this is greater than given value
        Parameters:
        value - the value to compare with
        Returns:
        true if greater than, false otherwise
      • greaterThanOrEqualTo

        boolean greaterThanOrEqualTo​(int value)
        Check that this is greater than or equal given value
        Parameters:
        value - the value to compare with
        Returns:
        true if greater than or equal, false otherwise