FileDocCategorySizeDatePackage
Interpolator.javaAPI DocAndroid 5.1 API1280Sat Mar 14 14:09:32 GMT 2015android.graphics

Interpolator.java

package android.graphics;
public class Interpolator
{
public static enum Result
{
FREEZE_END(),
FREEZE_START(),
NORMAL();
}
public  Interpolator(int valueCount) { throw new RuntimeException("Stub!"); }
public  Interpolator(int valueCount, int frameCount) { throw new RuntimeException("Stub!"); }
public  void reset(int valueCount) { throw new RuntimeException("Stub!"); }
public  void reset(int valueCount, int frameCount) { throw new RuntimeException("Stub!"); }
public final  int getKeyFrameCount() { throw new RuntimeException("Stub!"); }
public final  int getValueCount() { throw new RuntimeException("Stub!"); }
public  void setKeyFrame(int index, int msec, float[] values) { throw new RuntimeException("Stub!"); }
public  void setKeyFrame(int index, int msec, float[] values, float[] blend) { throw new RuntimeException("Stub!"); }
public  void setRepeatMirror(float repeatCount, boolean mirror) { throw new RuntimeException("Stub!"); }
public  android.graphics.Interpolator.Result timeToValues(float[] values) { throw new RuntimeException("Stub!"); }
public  android.graphics.Interpolator.Result timeToValues(int msec, float[] values) { throw new RuntimeException("Stub!"); }
protected  void finalize() throws java.lang.Throwable { throw new RuntimeException("Stub!"); }
}