What is Range.isAfter() in Java?

Overview

isAfter() is an instance method of the Range class that is used to check whether a range is after a specific element or not.

How to import Range

The definition of Range can be found in the Apache Commons Lang package, which we can add to the Maven project by adding the following dependency to the pom.xml file:


<dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.12.0</version>
</dependency>

For other versions of the commons-lang package, refer to the Maven Repository.

You can import the Range class with the following command:


import org.apache.commons.lang3.Range;

Syntax


public boolean isAfter(final T element)

Parameters

  • final T element: The element to check.

Return value

This method returns true if the range is entirely after the specified element; otherwise, it returns false.

Code

import org.apache.commons.lang3.Range;
public class Main{
public static void main(String[] args) {
int fromValue = 100;
int toValue = 200;
Range<Integer> range = Range.between(fromValue, toValue);
// Example 1
int element = 150;
System.out.printf("%s.isAfter(%s) = %s", range, element, range.isAfter(element));
System.out.println();
// Example 2
element = 55;
System.out.printf("%s.isAfter(%s) = %s", range, element, range.isAfter(element));
System.out.println();
// Example 3
element = 300;
System.out.printf("%s.isAfter(%s) = %s", range, element, range.isAfter(element));
}
}

Example 1

  • range = [100..200]
  • element = 150

The method returns false because the entire range is not after the element.

Example 2

  • range = [100..200]
  • element = 55

The method returns true because the entire range is after the element.

Example 3

  • range = [100..200]
  • element = 300

The method returns false because the entire range is not after the element.

Output

The output of the code will be as follows:


[100..200].isAfter(150) = false
[100..200].isAfter(55) = true
[100..200].isAfter(300) = false