/**@class android.net.NetworkIdentity
 implements java.lang.Comparable

@extends java.lang.Object

 Network definition that includes strong identity. Analogous to combining
 {@link android.net.NetworkInfo} and an IMSI.

 @hide
*/
var NetworkIdentity = {

/** When enabled, combine all {@link #mSubType} together under
 {@link #SUBTYPE_COMBINED}.

 @deprecated we no longer offer to collect statistics on a per-subtype
             basis; this is always disabled.
*/
COMBINE_SUBTYPE_ENABLED : "true",
/***/
SUBTYPE_COMBINED : "-1",
/**
*/
hashCode : function(  ) {},

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

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

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

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

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

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

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

/**Scrub given IMSI on production builds.
*/
scrubSubscriberId : function(  ) {},

/**Scrub given IMSI on production builds.
*/
scrubSubscriberId : function(  ) {},

/**Build a {@link android.net.NetworkIdentity} from the given {@link android.net.NetworkState},
 assuming that any mobile networks are using the current IMSI.
*/
buildNetworkIdentity : function(  ) {},

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


};