FileDocCategorySizeDatePackage
Range.javaAPI DocAndroid 5.1 API1399Sat Mar 14 14:09:40 GMT 2015android.util

Range.java

package android.util;
public final class Range<T extends java.lang.Comparable<? super T>>
{
public  Range(T lower, T upper) { throw new RuntimeException("Stub!"); }
public static <T extends java.lang.Comparable<? super T>> android.util.Range<T> create(T lower, T upper) { throw new RuntimeException("Stub!"); }
public  T getLower() { throw new RuntimeException("Stub!"); }
public  T getUpper() { throw new RuntimeException("Stub!"); }
public  boolean contains(T value) { throw new RuntimeException("Stub!"); }
public  boolean contains(android.util.Range<T> range) { throw new RuntimeException("Stub!"); }
public  boolean equals(java.lang.Object obj) { throw new RuntimeException("Stub!"); }
public  T clamp(T value) { throw new RuntimeException("Stub!"); }
public  android.util.Range<T> intersect(android.util.Range<T> range) { throw new RuntimeException("Stub!"); }
public  android.util.Range<T> intersect(T lower, T upper) { throw new RuntimeException("Stub!"); }
public  android.util.Range<T> extend(android.util.Range<T> range) { throw new RuntimeException("Stub!"); }
public  android.util.Range<T> extend(T lower, T upper) { throw new RuntimeException("Stub!"); }
public  android.util.Range<T> extend(T value) { throw new RuntimeException("Stub!"); }
public  java.lang.String toString() { throw new RuntimeException("Stub!"); }
public  int hashCode() { throw new RuntimeException("Stub!"); }
}