FileDocCategorySizeDatePackage
PropertyValuesHolder.javaAPI DocAndroid 5.1 API5046Sat Mar 14 14:09:40 GMT 2015android.animation

PropertyValuesHolder.java

package android.animation;
public class PropertyValuesHolder
  implements java.lang.Cloneable
{
PropertyValuesHolder() { throw new RuntimeException("Stub!"); }
public static  android.animation.PropertyValuesHolder ofInt(java.lang.String propertyName, int... values) { throw new RuntimeException("Stub!"); }
public static  android.animation.PropertyValuesHolder ofInt(android.util.Property<?, java.lang.Integer> property, int... values) { throw new RuntimeException("Stub!"); }
public static  android.animation.PropertyValuesHolder ofMultiInt(java.lang.String propertyName, int[][] values) { throw new RuntimeException("Stub!"); }
public static  android.animation.PropertyValuesHolder ofMultiInt(java.lang.String propertyName, android.graphics.Path path) { throw new RuntimeException("Stub!"); }
public static <V> android.animation.PropertyValuesHolder ofMultiInt(java.lang.String propertyName, android.animation.TypeConverter<V, int[]> converter, android.animation.TypeEvaluator<V> evaluator, V... values) { throw new RuntimeException("Stub!"); }
public static <T> android.animation.PropertyValuesHolder ofMultiInt(java.lang.String propertyName, android.animation.TypeConverter<T, int[]> converter, android.animation.TypeEvaluator<T> evaluator, android.animation.Keyframe... values) { throw new RuntimeException("Stub!"); }
public static  android.animation.PropertyValuesHolder ofFloat(java.lang.String propertyName, float... values) { throw new RuntimeException("Stub!"); }
public static  android.animation.PropertyValuesHolder ofFloat(android.util.Property<?, java.lang.Float> property, float... values) { throw new RuntimeException("Stub!"); }
public static  android.animation.PropertyValuesHolder ofMultiFloat(java.lang.String propertyName, float[][] values) { throw new RuntimeException("Stub!"); }
public static  android.animation.PropertyValuesHolder ofMultiFloat(java.lang.String propertyName, android.graphics.Path path) { throw new RuntimeException("Stub!"); }
public static <V> android.animation.PropertyValuesHolder ofMultiFloat(java.lang.String propertyName, android.animation.TypeConverter<V, float[]> converter, android.animation.TypeEvaluator<V> evaluator, V... values) { throw new RuntimeException("Stub!"); }
public static <T> android.animation.PropertyValuesHolder ofMultiFloat(java.lang.String propertyName, android.animation.TypeConverter<T, float[]> converter, android.animation.TypeEvaluator<T> evaluator, android.animation.Keyframe... values) { throw new RuntimeException("Stub!"); }
public static  android.animation.PropertyValuesHolder ofObject(java.lang.String propertyName, android.animation.TypeEvaluator evaluator, java.lang.Object... values) { throw new RuntimeException("Stub!"); }
public static  android.animation.PropertyValuesHolder ofObject(java.lang.String propertyName, android.animation.TypeConverter<android.graphics.PointF, ?> converter, android.graphics.Path path) { throw new RuntimeException("Stub!"); }
public static <V> android.animation.PropertyValuesHolder ofObject(android.util.Property property, android.animation.TypeEvaluator<V> evaluator, V... values) { throw new RuntimeException("Stub!"); }
public static <T, V> android.animation.PropertyValuesHolder ofObject(android.util.Property<?, V> property, android.animation.TypeConverter<T, V> converter, android.animation.TypeEvaluator<T> evaluator, T... values) { throw new RuntimeException("Stub!"); }
public static <V> android.animation.PropertyValuesHolder ofObject(android.util.Property<?, V> property, android.animation.TypeConverter<android.graphics.PointF, V> converter, android.graphics.Path path) { throw new RuntimeException("Stub!"); }
public static  android.animation.PropertyValuesHolder ofKeyframe(java.lang.String propertyName, android.animation.Keyframe... values) { throw new RuntimeException("Stub!"); }
public static  android.animation.PropertyValuesHolder ofKeyframe(android.util.Property property, android.animation.Keyframe... values) { throw new RuntimeException("Stub!"); }
public  void setIntValues(int... values) { throw new RuntimeException("Stub!"); }
public  void setFloatValues(float... values) { throw new RuntimeException("Stub!"); }
public  void setKeyframes(android.animation.Keyframe... values) { throw new RuntimeException("Stub!"); }
public  void setObjectValues(java.lang.Object... values) { throw new RuntimeException("Stub!"); }
public  void setConverter(android.animation.TypeConverter converter) { throw new RuntimeException("Stub!"); }
public  android.animation.PropertyValuesHolder clone() { throw new RuntimeException("Stub!"); }
public  void setEvaluator(android.animation.TypeEvaluator evaluator) { throw new RuntimeException("Stub!"); }
public  void setPropertyName(java.lang.String propertyName) { throw new RuntimeException("Stub!"); }
public  void setProperty(android.util.Property property) { throw new RuntimeException("Stub!"); }
public  java.lang.String getPropertyName() { throw new RuntimeException("Stub!"); }
public  java.lang.String toString() { throw new RuntimeException("Stub!"); }
}