Added in API level 1

DhcpInfo


open class DhcpInfo : Parcelable

A simple object for retrieving the results of a DHCP request.

Summary

Inherited constants
Int CONTENTS_FILE_DESCRIPTOR

Descriptor bit used with describeContents(): indicates that the Parcelable object's flattened representation includes a file descriptor.

Int PARCELABLE_WRITE_RETURN_VALUE

Flag for use with writeToParcel: the object being written is a return value, that is the result of a function such as "Parcelable someFunction()", "void someFunction(out Parcelable)", or "void someFunction(inout Parcelable)". Some implementations may want to release resources at this point.

Public constructors

Public methods
open Int

Implement the Parcelable interface

open String

open Unit
writeToParcel(dest: Parcel, flags: Int)

Implement the Parcelable interface

Public constructors

DhcpInfo

Added in API level 1
DhcpInfo()

Public methods

describeContents

Added in API level 1
open fun describeContents(): Int

Implement the Parcelable interface

Return
Int a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR

toString

Added in API level 1
open fun toString(): String
Return
String a string representation of the object.

writeToParcel

Added in API level 1
open fun writeToParcel(
    dest: Parcel,
    flags: Int
): Unit

Implement the Parcelable interface

Parameters
dest Parcel: The Parcel in which the object should be written. This value cannot be null.
flags Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES

Properties

CREATOR

Added in API level 30
static val CREATOR: Parcelable.Creator<DhcpInfo!>

Implement the Parcelable interface

dns1

Added in API level 1
var dns1: Int

dns2

Added in API level 1
var dns2: Int

gateway

Added in API level 1
var gateway: Int

ipAddress

Added in API level 1
var ipAddress: Int

leaseDuration

Added in API level 1
var leaseDuration: Int

netmask

Added in API level 1
var netmask: Int

serverAddress

Added in API level 1
var serverAddress: Int