RadioAccessSpecifier
class RadioAccessSpecifier : Parcelable
Describes a particular radio access network to be scanned. The scan can be performed on either bands or channels for a specific radio access network type.
Summary
Inherited constants |
From class Parcelable
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 |
Creates a new RadioAccessSpecifier with radio network, bands and channels The user must specify the radio network type, and at least specify either of frequency bands or channels.
|
Public methods |
Int |
|
Boolean |
|
IntArray! |
Returns the frequency bands that need to be scanned.
|
IntArray! |
Returns the frequency channels that need to be scanned.
|
Int |
Returns the radio access network that needs to be scanned.
|
Int |
|
String |
|
Unit |
|
Public constructors
RadioAccessSpecifier
RadioAccessSpecifier(
ran: Int,
bands: IntArray!,
channels: IntArray!)
Creates a new RadioAccessSpecifier with radio network, bands and channels The user must specify the radio network type, and at least specify either of frequency bands or channels.
Parameters |
ran |
Int: The type of the radio access network |
bands |
IntArray!: the frequency bands to be scanned |
channels |
IntArray!: the frequency bands to be scanned |
Public methods
describeContents
fun describeContents(): Int
equals
fun equals(other: Any?): Boolean
Parameters |
obj |
the reference object with which to compare. |
Return |
Boolean |
true if this object is the same as the obj argument; false otherwise. |
getChannels
fun getChannels(): IntArray!
Returns the frequency channels that need to be scanned.
hashCode
fun hashCode(): Int
Return |
Int |
a hash code value for this object. |
toString
fun toString(): String
Return |
String |
a string representation of the object. |
Properties