Field.GetShort(Object) Method

Definition

Gets the value of a static or instance field of type short or of another primitive type convertible to type short via a widening conversion.

[Android.Runtime.Register("getShort", "(Ljava/lang/Object;)S", "")]
public short GetShort (Java.Lang.Object? obj);
[<Android.Runtime.Register("getShort", "(Ljava/lang/Object;)S", "")>]
member this.GetShort : Java.Lang.Object -> int16

Parameters

obj
Object

the object to extract the short value from

Returns

the value of the field converted to type short

Attributes

Exceptions

if the object is null and the field is non-static

if the object is not compatible with the declaring class

if this field is not accessible

Remarks

Gets the value of a static or instance field of type short or of another primitive type convertible to type short via a widening conversion.

Java documentation for java.lang.reflect.Field.getShort(java.lang.Object).

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