LongRange.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. package org.apache.commons.lang3;

  18. /**
  19.  * Specializes {@link NumberRange} for {@link Long}s.
  20.  *
  21.  * <p>
  22.  * This class is not designed to interoperate with other NumberRanges
  23.  * </p>
  24.  *
  25.  * @since 3.13.0
  26.  */
  27. public final class LongRange extends NumberRange<Long> {

  28.     private static final long serialVersionUID = 1L;

  29.     /**
  30.      * Creates a range with the specified minimum and maximum values (both inclusive).
  31.      *
  32.      * <p>
  33.      * The range uses the natural ordering of the elements to determine where values lie in the range.
  34.      * </p>
  35.      *
  36.      * <p>
  37.      * The arguments may be passed in the order (min,max) or (max,min). The getMinimum and getMaximum methods will return the correct values.
  38.      * </p>
  39.      *
  40.      * @param fromInclusive the first value that defines the edge of the range, inclusive.
  41.      * @param toInclusive the second value that defines the edge of the range, inclusive.
  42.      * @return the range object, not null.
  43.      */
  44.     public static LongRange of(final long fromInclusive, final long toInclusive) {
  45.         return of(Long.valueOf(fromInclusive), Long.valueOf(toInclusive));
  46.     }

  47.     /**
  48.      * Creates a range with the specified minimum and maximum values (both inclusive).
  49.      *
  50.      * <p>
  51.      * The range uses the natural ordering of the elements to determine where values lie in the range.
  52.      * </p>
  53.      *
  54.      * <p>
  55.      * The arguments may be passed in the order (min,max) or (max,min). The getMinimum and getMaximum methods will return the correct values.
  56.      * </p>
  57.      *
  58.      * @param fromInclusive the first value that defines the edge of the range, inclusive.
  59.      * @param toInclusive the second value that defines the edge of the range, inclusive.
  60.      * @return the range object, not null.
  61.      * @throws IllegalArgumentException if either element is null.
  62.      */
  63.     public static LongRange of(final Long fromInclusive, final Long toInclusive) {
  64.         return new LongRange(fromInclusive, toInclusive);
  65.     }

  66.     /**
  67.      * Creates an instance.
  68.      *
  69.      * @param number1 the first element, not null
  70.      * @param number2 the second element, not null
  71.      * @throws NullPointerException when element1 is null.
  72.      * @throws NullPointerException when element2 is null.
  73.      */
  74.     private LongRange(final Long number1, final Long number2) {
  75.         super(number1, number2, null);
  76.     }

  77. }