FileDocCategorySizeDatePackage
Pair.javaAPI DocAndroid 5.1 API419Sat Mar 14 14:09:30 GMT 2015android.util

Pair.java

package android.util;
public class Pair<F, S>
{
public  Pair(F first, S second) { throw new RuntimeException("Stub!"); }
public  boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); }
public  int hashCode() { throw new RuntimeException("Stub!"); }
public static <A, B> android.util.Pair<A, B> create(A a, B b) { throw new RuntimeException("Stub!"); }
public final F first;
public final S second;
}