FileDocCategorySizeDatePackage
Rational.javaAPI DocAndroid 5.1 API1753Sat Mar 14 14:09:36 GMT 2015android.util

Rational.java

package android.util;
public final class Rational
  extends java.lang.Number
  implements java.lang.Comparable<android.util.Rational>
{
public  Rational(int numerator, int denominator) { throw new RuntimeException("Stub!"); }
public  int getNumerator() { throw new RuntimeException("Stub!"); }
public  int getDenominator() { throw new RuntimeException("Stub!"); }
public  boolean isNaN() { throw new RuntimeException("Stub!"); }
public  boolean isInfinite() { throw new RuntimeException("Stub!"); }
public  boolean isFinite() { throw new RuntimeException("Stub!"); }
public  boolean isZero() { throw new RuntimeException("Stub!"); }
public  boolean equals(java.lang.Object obj) { throw new RuntimeException("Stub!"); }
public  java.lang.String toString() { throw new RuntimeException("Stub!"); }
public  int hashCode() { throw new RuntimeException("Stub!"); }
public  double doubleValue() { throw new RuntimeException("Stub!"); }
public  float floatValue() { throw new RuntimeException("Stub!"); }
public  int intValue() { throw new RuntimeException("Stub!"); }
public  long longValue() { throw new RuntimeException("Stub!"); }
public  short shortValue() { throw new RuntimeException("Stub!"); }
public  int compareTo(android.util.Rational another) { throw new RuntimeException("Stub!"); }
public static  android.util.Rational parseRational(java.lang.String string) throws java.lang.NumberFormatException { throw new RuntimeException("Stub!"); }
public static final android.util.Rational NEGATIVE_INFINITY;
public static final android.util.Rational NaN;
public static final android.util.Rational POSITIVE_INFINITY;
public static final android.util.Rational ZERO;
static { NEGATIVE_INFINITY = null; NaN = null; POSITIVE_INFINITY = null; ZERO = null; }
}