/**@class android.net.NetworkKey implements android.os.Parcelable @extends java.lang.Object Information which identifies a specific network. @hide */ var NetworkKey = { /**A wifi network, for which {@link #wifiKey} will be populated. */ TYPE_WIFI : "1", /** The type of this network. @see #TYPE_WIFI */ type : "null", /** Information identifying a Wi-Fi network. Only set when {@link #type} equals {@link #TYPE_WIFI}. */ wifiKey : "null", /***/ CREATOR : "null", /**Constructs a new NetworkKey for the given wifi {@link ScanResult}. @return {Object {android.net.NetworkKey}} A new {@link NetworkKey} instance or <code>null</code> if the given {@link ScanResult} instance is malformed. @hide */ createFromScanResult : function( ) {}, /**Constructs a new NetworkKey for the given {@link WifiInfo}. @param {Object {WifiInfo}} wifiInfo the {@link WifiInfo} to create a {@link NetworkKey} for. @return {Object {android.net.NetworkKey}} A new {@link NetworkKey} instance or <code>null</code> if the given {@link WifiInfo} instance doesn't represent a connected WiFi network. @hide */ createFromWifiInfo : function( ) {}, /** */ describeContents : function( ) {}, /** */ writeToParcel : function( ) {}, /** */ equals : function( ) {}, /** */ hashCode : function( ) {}, /** */ toString : function( ) {}, };