public class WpsInfo
extends Object
implements Parcelable
java.lang.Object | |
↳ | android.net.wifi.WpsInfo |
表示Wi-Fi Protected Setup的类
也可以看看:
Constants |
|
---|---|
int |
DISPLAY 显示引脚方法配置 - 引脚生成并显示在设备上 |
int |
INVALID 无效的配置 |
int |
KEYPAD 键盘引脚方法配置 - 在器件上输入引脚 |
int |
LABEL 标签引脚方法配置 - 引脚标记在设备上 |
int |
PBC 按钮配置 |
Inherited constants |
---|
From interface android.os.Parcelable
|
Fields |
|
---|---|
public String |
BSSID 通过PIN方法KEYPAD传递 |
public static final Creator<WpsInfo> |
CREATOR 实现Parcelable接口 |
public String |
pin 通过pin方法配置 |
public int |
setup Wi-Fi保护设置。 |
Public constructors |
|
---|---|
WpsInfo() |
|
WpsInfo(WpsInfo source) |
Public methods |
|
---|---|
int |
describeContents() 实现Parcelable接口 |
String |
toString() 返回对象的字符串表示形式。 |
void |
writeToParcel(Parcel dest, int flags) 实现Parcelable接口 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
|
From interface android.os.Parcelable
|
int describeContents ()
实现Parcelable接口
Returns | |
---|---|
int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. |
String toString ()
返回对象的字符串表示形式。 通常, toString
方法会返回一个“文本地表示”该对象的字符串。 结果应该是一个简洁但内容丰富的表述,对于一个人来说很容易阅读。 建议所有子类重写此方法。
类Object
的toString
方法返回一个字符串,其中包含对象为实例的类的名称,符号字符“ @
”以及对象的哈希代码的无符号十六进制表示形式。 换句话说,这个方法返回一个字符串,其值等于:
getClass().getName() + '@' + Integer.toHexString(hashCode())
Returns | |
---|---|
String |
a string representation of the object. |
void writeToParcel (Parcel dest, int flags)
实现Parcelable接口
Parameters | |
---|---|
dest |
Parcel : The Parcel in which the object should be written. |
flags |
int : Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . |