All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.techempower.util.IntRange Maven / Gradle / Ivy

There is a newer version: 3.3.14
Show newest version
/*******************************************************************************
 * Copyright (c) 2018, TechEmpower, Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *     * Redistributions of source code must retain the above copyright
 *       notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright
 *       notice, this list of conditions and the following disclaimer in the
 *       documentation and/or other materials provided with the distribution.
 *     * Neither the name TechEmpower, Inc. nor the names of its
 *       contributors may be used to endorse or promote products derived from
 *       this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL TECHEMPOWER, INC. BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *******************************************************************************/
package com.techempower.util;

import java.util.*;

import com.techempower.helper.*;

/**
 * A minimum and maximum integer, together defining a range.
 */
public class IntRange
  implements Iterable
{

  //
  // Some standard ranges.
  //
  
  public static final IntRange POSITIVE = new IntRange(1, Integer.MAX_VALUE);
  public static final IntRange POSITIVE_OR_ZERO = new IntRange(0, Integer.MAX_VALUE);
  public static final IntRange NEGATIVE = new IntRange(Integer.MIN_VALUE, -1);
  public static final IntRange NEGATIVE_OR_ZERO = new IntRange(Integer.MIN_VALUE, 0);

  //
  // Members.
  //
  
  public final int min;
  public final int max;
  
  /**
   * Constructor.
   */
  public IntRange(int min, int max)
  {
    Args.intMin(max, "max", min);
    this.min = min;
    this.max = max;
  }
  
  /**
   * Creates an IntRange for the length of a provided String.
   */
  public static IntRange forLengthOf(String str)
  {
    return forLengthOf(str, true);
  }

  /**
   * Creates an IntRange for the length of a provided String, including zero.
   */
  public static IntRange forLengthOf(String str, boolean allowZero)
  {
    if (  (!allowZero)
       && (str.length() == 0)
       )
    {
      throw new IllegalArgumentException(
          "Provided string is zero length and requested range excludes zero.");
    }
    
    return new IntRange((allowZero ? 0 : 1), str.length());
  }

  @Override
  public Iterator iterator() {
    return new Iterator() {
      int position = min;
      @Override public void remove() { }
      @Override public Integer next() { return position++; }
      @Override public boolean hasNext() { return position <= max; }
    };
  }
  
  /**
   * Return the full extent that the range covers from end to end; the width
   * of the range as depicted on a number line.  For example, the width of
   * the range (0,2) is 2 and the width of (-1,1) is also 2.
   * 
   * 
   * new IntRange(4,5).span(); // 1
   * 
*/ public int width() { return Math.abs(max - min); } /** * Return the number of integers contained in this range, inclusive of both * edges. In other words, the count is the width plus 1. For example, the * count of (0,2) is 3 because the range encompasses three integers: 0, 1, * and 2. * *
   * new IntRange(4,5).count(); // 2
   * 
*/ public int count() { return this.width() + 1; } /** * Is a provided number in the range? */ public boolean contains(int number) { return ( (number >= min) && (number <= max) ); } /** * Bound a provided parameter by this range, meaning that inputs outside * of the range will be trimmed to the edge of the range. An input * exceeding the maximum will be set to the maximum; an input lower than * the minimum will be set to the minimum. */ public int bound(int number) { return NumberHelper.boundInteger(number, this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy