Lines Matching defs:PropertyValuesHolder

34  * should take on during an animation. PropertyValuesHolder objects can be used to create
38 public class PropertyValuesHolder implements Cloneable {
54 * PropertyValuesHolder, since it holds all of the per-property information. This
62 * PropertyValuesHolder, since it holds all of the per-property information. This
134 private PropertyValuesHolder(String propertyName) {
142 private PropertyValuesHolder(Property property) {
150 * Constructs and returns a PropertyValuesHolder with a given property name and
154 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
156 public static PropertyValuesHolder ofInt(String propertyName, int... values) {
161 * Constructs and returns a PropertyValuesHolder with a given property and
165 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
167 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) {
172 * Constructs and returns a PropertyValuesHolder with a given property name and
181 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
185 public static PropertyValuesHolder ofMultiInt(String propertyName, int[][] values) {
206 * Constructs and returns a PropertyValuesHolder with a given property name to use
214 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
215 * @see ObjectAnimator#ofPropertyValuesHolder(Object, PropertyValuesHolder...)
217 public static PropertyValuesHolder ofMultiInt(String propertyName, Path path) {
224 * Constructs and returns a PropertyValuesHolder with a given property and
235 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
237 * @see ObjectAnimator#ofPropertyValuesHolder(Object, PropertyValuesHolder...)
240 public static <V> PropertyValuesHolder ofMultiInt(String propertyName,
246 * Constructs and returns a PropertyValuesHolder object with the specified property name or
260 * @return A PropertyValuesHolder for a multi-int parameter setter.
262 public static <T> PropertyValuesHolder ofMultiInt(String propertyName,
269 * Constructs and returns a PropertyValuesHolder with a given property name and
273 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
275 public static PropertyValuesHolder ofFloat(String propertyName, float... values) {
280 * Constructs and returns a PropertyValuesHolder with a given property and
284 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
286 public static PropertyValuesHolder ofFloat(Property<?, Float> property, float... values) {
291 * Constructs and returns a PropertyValuesHolder with a given property name and
300 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
304 public static PropertyValuesHolder ofMultiFloat(String propertyName, float[][] values) {
325 * Constructs and returns a PropertyValuesHolder with a given property name to use
333 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
334 * @see ObjectAnimator#ofPropertyValuesHolder(Object, PropertyValuesHolder...)
336 public static PropertyValuesHolder ofMultiFloat(String propertyName, Path path) {
343 * Constructs and returns a PropertyValuesHolder with a given property and
354 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
358 public static <V> PropertyValuesHolder ofMultiFloat(String propertyName,
364 * Constructs and returns a PropertyValuesHolder object with the specified property name or
378 * @return A PropertyValuesHolder for a multi-float parameter setter.
380 public static <T> PropertyValuesHolder ofMultiFloat(String propertyName,
387 * Constructs and returns a PropertyValuesHolder with a given property name and
393 * affect the values on the PropertyValuesHolder. If the objects will be mutated externally
401 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
403 public static PropertyValuesHolder ofObject(String propertyName, TypeEvaluator evaluator,
405 PropertyValuesHolder pvh = new PropertyValuesHolder(propertyName);
412 * Constructs and returns a PropertyValuesHolder with a given property name and
425 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
427 public static PropertyValuesHolder ofObject(String propertyName,
429 PropertyValuesHolder pvh = new PropertyValuesHolder(propertyName);
437 * Constructs and returns a PropertyValuesHolder with a given property and
443 * affect the values on the PropertyValuesHolder. If the objects will be mutated externally
451 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
454 public static <V> PropertyValuesHolder ofObject(Property property,
456 PropertyValuesHolder pvh = new PropertyValuesHolder(property);
463 * Constructs and returns a PropertyValuesHolder with a given property and
473 * affect the values on the PropertyValuesHolder. If the objects will be mutated externally
482 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
487 public static <T, V> PropertyValuesHolder ofObject(Property<?, V> property,
489 PropertyValuesHolder pvh = new PropertyValuesHolder(property);
497 * Constructs and returns a PropertyValuesHolder with a given property and
510 * @return PropertyValuesHolder The constructed PropertyValuesHolder object.
512 public static <V> PropertyValuesHolder ofObject(Property<?, V> property,
514 PropertyValuesHolder pvh = new PropertyValuesHolder(property);
522 * Constructs and returns a PropertyValuesHolder object with the specified property name and set
530 * if the PropertyValuesHolder object is used in conjunction
532 * derived automatically from <code>propertyName</code>, since otherwise PropertyValuesHolder has
540 public static PropertyValuesHolder ofKeyframe(String propertyName, Keyframe... values) {
546 * Constructs and returns a PropertyValuesHolder object with the specified property and set
555 * if the PropertyValuesHolder object is used in conjunction with
556 * {@link ObjectAnimator}, since otherwise PropertyValuesHolder has
561 public static PropertyValuesHolder ofKeyframe(Property property, Keyframe... values) {
566 static PropertyValuesHolder ofKeyframes(String propertyName, Keyframes keyframes) {
573 PropertyValuesHolder pvh = new PropertyValuesHolder(propertyName);
580 static PropertyValuesHolder ofKeyframes(Property property, Keyframes keyframes) {
586 PropertyValuesHolder pvh = new PropertyValuesHolder(property);
599 * if the PropertyValuesHolder object is used in conjunction
601 * derived automatically from <code>propertyName</code>, since otherwise PropertyValuesHolder has
617 * if the PropertyValuesHolder object is used in conjunction
619 * derived automatically from <code>propertyName</code>, since otherwise PropertyValuesHolder has
650 * if the PropertyValuesHolder object is used in conjunction
652 * derived automatically from <code>propertyName</code>, since otherwise PropertyValuesHolder has
657 * affect the values on the PropertyValuesHolder. If the objects will be mutated externally
689 * is derived from the values set on this PropertyValuesHolder. This type is used as
736 Log.w("PropertyValuesHolder", "Method " +
828 Log.w("PropertyValuesHolder","No such property (" + mProperty.getName() +
856 Log.e("PropertyValuesHolder", e.toString());
858 Log.e("PropertyValuesHolder", e.toString());
901 Log.e("PropertyValuesHolder", e.toString());
903 Log.e("PropertyValuesHolder", e.toString());
912 * PropertyValuesHolder object.
927 * PropertyValuesHolder object.
939 public PropertyValuesHolder clone() {
941 PropertyValuesHolder newPVH = (PropertyValuesHolder) super.clone();
955 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator
969 Log.e("PropertyValuesHolder", e.toString());
971 Log.e("PropertyValuesHolder", e.toString());
997 * supplied to PropertyValuesHolder. The evaluator can be manually set, however, if so
1012 * this PropertyValuesHolder object. This function is called by ValueAnimator.animateValue().
1043 * <p>Note that if this PropertyValuesHolder object is used with ObjectAnimator, the property
1074 * PropertyValuesHolder is Animators use to hold internal animation related data.
1076 * PropertyValuesHolder.
1149 static class IntPropertyValuesHolder extends PropertyValuesHolder {
1224 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator
1248 Log.e("PropertyValuesHolder", e.toString());
1250 Log.e("PropertyValuesHolder", e.toString());
1296 static class FloatPropertyValuesHolder extends PropertyValuesHolder {
1371 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator
1395 Log.e("PropertyValuesHolder", e.toString());
1397 Log.e("PropertyValuesHolder", e.toString());
1444 static class MultiFloatValuesHolder extends PropertyValuesHolder {
1467 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator
1551 static class MultiIntValuesHolder extends PropertyValuesHolder {
1574 * earlier on this PropertyValuesHolder object. This function is called by ObjectAnimator