Class IntRangeFilterElement

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.Integer lowerBound
      Lower bound of the range.
      private java.lang.Integer upperBound
      Upper bound of the range.
    • Constructor Summary

      Constructors 
      Constructor Description
      IntRangeFilterElement​(int lowerBound, int upperBound)
      Constructs a IntRangeFilterElement with a lower bound and an upper bound for the range.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean accept​(int intValue)
      Determines whether or not a filtered Integer is accepted.
      boolean equals​(java.lang.Object other)  
      int hashCode()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • lowerBound

        private final java.lang.Integer lowerBound
        Lower bound of the range.
      • upperBound

        private final java.lang.Integer upperBound
        Upper bound of the range.
    • Constructor Detail

      • IntRangeFilterElement

        IntRangeFilterElement​(int lowerBound,
                              int upperBound)
        Constructs a IntRangeFilterElement with a lower bound and an upper bound for the range.
        Parameters:
        lowerBound - the lower bound of the range.
        upperBound - the upper bound of the range.
    • Method Detail

      • accept

        public boolean accept​(int intValue)
        Description copied from interface: IntFilterElement
        Determines whether or not a filtered Integer is accepted.
        Specified by:
        accept in interface IntFilterElement
        Parameters:
        intValue - the Integer to filter.
        Returns:
        true if the intValue is accepted.
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object other)
        Overrides:
        equals in class java.lang.Object