/**@class android.graphics.Insets
 implements android.os.Parcelable

@extends java.lang.Object

 An Insets instance holds four integer offsets which describe changes to the four
 edges of a Rectangle. By convention, positive values move edges towards the
 centre of the rectangle.
 <p>
 Insets are immutable so may be treated as values.

*/
var Insets = {

/***/
NONE : "null",
/***/
left : "null",
/***/
top : "null",
/***/
right : "null",
/***/
bottom : "null",
/***/
CREATOR : "null",
/**Return an Insets instance with the appropriate values.
@param {Number} left the left inset
@param {Number} top the top inset
@param {Number} right the right inset
@param {Number} bottom the bottom inset
@return {Object {android.graphics.Insets}} Insets instance with the appropriate values
*/
of : function(  ) {},

/**Return an Insets instance with the appropriate values.
@param {Object {Rect}} r the rectangle from which to take the values
@return {Object {android.graphics.Insets}} an Insets instance with the appropriate values
*/
of : function(  ) {},

/**Returns a Rect instance with the appropriate values.
@hide 
*/
toRect : function(  ) {},

/**Add two Insets.
@param {Object {Insets}} a The first Insets to add.
@param {Object {Insets}} b The second Insets to add.
@return {Object {android.graphics.Insets}} a + b, i. e. all insets on every side are added together.
*/
add : function(  ) {},

/**Subtract two Insets.
@param {Object {Insets}} a The minuend.
@param {Object {Insets}} b The subtrahend.
@return {Object {android.graphics.Insets}} a - b, i. e. all insets on every side are subtracted from each other.
*/
subtract : function(  ) {},

/**Retrieves the maximum of two Insets.
@param {Object {Insets}} a The first Insets.
@param {Object {Insets}} b The second Insets.
@return {Object {android.graphics.Insets}} max(a, b), i. e. the larger of every inset on every side is taken for the result.
*/
max : function(  ) {},

/**Retrieves the minimum of two Insets.
@param {Object {Insets}} a The first Insets.
@param {Object {Insets}} b The second Insets.
@return {Object {android.graphics.Insets}} min(a, b), i. e. the smaller of every inset on every side is taken for the result.
*/
min : function(  ) {},

/**Two Insets instances are equal iff they belong to the same class and their fields are
 pairwise equal.
@param {Object {Object}} o the object to compare this instance with.
@return {Boolean} true iff this object is equal {@code o}
*/
equals : function(  ) {},

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

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

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

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


};