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

com.heroku.api.util.Range Maven / Gradle / Ivy

There is a newer version: 0.46
Show newest version
package com.heroku.api.util;

import java.util.ArrayList;

/**
 * @author Joe Kutner on 2/17/17.
 *         Twitter: @codefinger
 */
public class Range extends ArrayList {

  public String nextRange;

  public void setNextRange(String nextRange) {
    this.nextRange = nextRange;
  }

  public String getNextRange() {
    return this.nextRange;
  }

  public Boolean hasNextRange() {
    return this.nextRange != null;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy