/**@class android.animation.PathKeyframes
 implements android.animation.Keyframes

@extends java.lang.Object

 PathKeyframes relies on approximating the Path as a series of line segments.
 The line segments are recursively divided until there is less than 1/2 pixel error
 between the lines and the curve. Each point of the line segment is converted
 to a Keyframe and a linear interpolation between Keyframes creates a good approximation
 of the curve.
 <p>
 PathKeyframes is optimized to reduce the number of objects created when there are
 many keyframes for a curve.
 </p>
 <p>
 Typically, the returned type is a PointF, but the individual components can be extracted
 as either an IntKeyframes or FloatKeyframes.
 </p>
 @hide
*/
var PathKeyframes = {

/**
*/
getKeyframes : function(  ) {},

/**
*/
getValue : function(  ) {},

/**
*/
setEvaluator : function(  ) {},

/**
*/
getType : function(  ) {},

/**
*/
clone : function(  ) {},

/**Returns a FloatKeyframes for the X component of the Path.
@return {Object {android.animation.Keyframes.FloatKeyframes}} a FloatKeyframes for the X component of the Path.
*/
createXFloatKeyframes : function(  ) {},

/**Returns a FloatKeyframes for the Y component of the Path.
@return {Object {android.animation.Keyframes.FloatKeyframes}} a FloatKeyframes for the Y component of the Path.
*/
createYFloatKeyframes : function(  ) {},

/**Returns an IntKeyframes for the X component of the Path.
@return {Object {android.animation.Keyframes.IntKeyframes}} an IntKeyframes for the X component of the Path.
*/
createXIntKeyframes : function(  ) {},

/**Returns an IntKeyframeSet for the Y component of the Path.
@return {Object {android.animation.Keyframes.IntKeyframes}} an IntKeyframeSet for the Y component of the Path.
*/
createYIntKeyframes : function(  ) {},


};