Property
class Property : Parcelable
kotlin.Any | |
↳ | android.content.pm.PackageManager.Property |
A property value set within the manifest.
The value of a property will only have a single type, as defined by the property itself.
Summary
Inherited constants | |
---|---|
Public methods | |
---|---|
Int | |
Boolean |
Returns the boolean value set for the property. |
String? |
Returns the classname of the component where this property was defined. |
Float |
getFloat() Returns the float value set for the property. |
Int |
Returns the integer value set for the property. |
String |
getName() Returns the name of the property. |
String |
Returns the name of the package where this this property was defined. |
Int |
Returns the a resource id set for the property. |
String? |
Returns the a String value set for the property. |
Boolean |
Returns |
Boolean |
isFloat() Returns |
Boolean |
Returns |
Boolean |
Returns |
Boolean |
isString() Returns |
Unit |
writeToParcel(dest: Parcel, flags: Int) Flatten this object in to a Parcel. |
Properties | |
---|---|
static Parcelable.Creator<PackageManager.Property!> |
Public methods
describeContents
fun describeContents(): Int
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 |
getBoolean
fun getBoolean(): Boolean
Returns the boolean value set for the property.
If the property is not of a boolean type, returns false
.
getClassName
fun getClassName(): String?
Returns the classname of the component where this property was defined.
If the property was defined within and <application> tag, returns null
getFloat
fun getFloat(): Float
Returns the float value set for the property.
If the property is not of a float type, returns 0.0
.
getInteger
fun getInteger(): Int
Returns the integer value set for the property.
If the property is not of an integer type, returns 0
.
getName
fun getName(): String
Returns the name of the property.
Return | |
---|---|
String |
This value cannot be null . |
getPackageName
fun getPackageName(): String
Returns the name of the package where this this property was defined.
Return | |
---|---|
String |
This value cannot be null . |
getResourceId
fun getResourceId(): Int
Returns the a resource id set for the property.
If the property is not of a resource id type, returns 0
.
getString
fun getString(): String?
Returns the a String value set for the property.
If the property is not a String type, returns null
.
isBoolean
fun isBoolean(): Boolean
Returns true
if the property is a boolean type. Otherwise false
.
isFloat
fun isFloat(): Boolean
Returns true
if the property is a float type. Otherwise false
.
isInteger
fun isInteger(): Boolean
Returns true
if the property is an integer type. Otherwise false
.
isResourceId
fun isResourceId(): Boolean
Returns true
if the property is a resource id type. Otherwise false
.
isString
fun isString(): Boolean
Returns true
if the property is a String type. Otherwise false
.
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Flatten this object in to a Parcel.
Parameters | |
---|---|
dest |
Parcel: 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 |