/**@class android.content.Entity
@extends java.lang.Object

 A representation of a item using ContentValues. It contains one top level ContentValue
 plus a collection of Uri, ContentValues tuples as subvalues. One example of its use
 is in Contacts, where the top level ContentValue contains the columns from the RawContacts
 table and the subvalues contain a ContentValues object for each row from the Data table that
 corresponds to that RawContact. The uri refers to the Data table uri for each row.
*/
var Entity = {

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

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

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

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


};