Integer.GetInteger Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| GetInteger(String) |
Determines the integer value of the system property with the specified name. |
| GetInteger(String, Integer) |
Returns the integer value of the system property with the specified name. |
| GetInteger(String, Int32) |
Determines the integer value of the system property with the specified name. |
GetInteger(String)
Determines the integer value of the system property with the specified name.
[Android.Runtime.Register("getInteger", "(Ljava/lang/String;)Ljava/lang/Integer;", "")]
public static Java.Lang.Integer? GetInteger (string nm);
[<Android.Runtime.Register("getInteger", "(Ljava/lang/String;)Ljava/lang/Integer;", "")>]
static member GetInteger : string -> Java.Lang.Integer
Parameters
- nm
- String
property name.
Returns
the Integer value of the property.
- Attributes
Remarks
Java documentation for java.lang.Integer.getInteger(java.lang.String).
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
GetInteger(String, Integer)
Returns the integer value of the system property with the specified name.
[Android.Runtime.Register("getInteger", "(Ljava/lang/String;Ljava/lang/Integer;)Ljava/lang/Integer;", "")]
public static Java.Lang.Integer? GetInteger (string nm, Java.Lang.Integer? val);
[<Android.Runtime.Register("getInteger", "(Ljava/lang/String;Ljava/lang/Integer;)Ljava/lang/Integer;", "")>]
static member GetInteger : string * Java.Lang.Integer -> Java.Lang.Integer
Parameters
- nm
- String
property name.
- val
- Integer
default value.
Returns
the Integer value of the property.
- Attributes
Remarks
Java documentation for java.lang.Integer.getInteger(java.lang.String, java.lang.Integer).
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
GetInteger(String, Int32)
Determines the integer value of the system property with the specified name.
[Android.Runtime.Register("getInteger", "(Ljava/lang/String;I)Ljava/lang/Integer;", "")]
public static Java.Lang.Integer? GetInteger (string nm, int val);
[<Android.Runtime.Register("getInteger", "(Ljava/lang/String;I)Ljava/lang/Integer;", "")>]
static member GetInteger : string * int -> Java.Lang.Integer
Parameters
- nm
- String
property name.
- val
- Int32
default value.
Returns
the Integer value of the property.
- Attributes
Remarks
Java documentation for java.lang.Integer.getInteger(java.lang.String, int).
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.