Collections.SingletonList(Object) Method

Definition

Returns an immutable list containing only the specified object.

[Android.Runtime.Register("singletonList", "(Ljava/lang/Object;)Ljava/util/List;", "")]
[Java.Interop.JavaTypeParameters(new System.String[] { "T" })]
public static System.Collections.IList SingletonList (Java.Lang.Object? o);
[<Android.Runtime.Register("singletonList", "(Ljava/lang/Object;)Ljava/util/List;", "")>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T" })>]
static member SingletonList : Java.Lang.Object -> System.Collections.IList

Parameters

o
Object

the sole object to be stored in the returned list.

Returns

an immutable list containing only the specified object.

Attributes

Remarks

Returns an immutable list containing only the specified object. The returned list is serializable.

Added in 1.3.

Java documentation for java.util.Collections.singletonList(T).

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