android.animation.PropertyValuesHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
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 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 ofObject(java.lang.String propertyName, android.animation.TypeEvaluator evaluator, java.lang.Object... values) { throw new RuntimeException("Stub!"); }
public static android.animation.PropertyValuesHolder ofObject(android.util.Property property, android.animation.TypeEvaluator evaluator, V... values) { 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 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!"); }
}