Optional.OrElse(Object) 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.
If a value is present, returns the value, otherwise returns
other
.
[Android.Runtime.Register("orElse", "(Ljava/lang/Object;)Ljava/lang/Object;", "", ApiSince=24)]
public Java.Lang.Object? OrElse (Java.Lang.Object? other);
[<Android.Runtime.Register("orElse", "(Ljava/lang/Object;)Ljava/lang/Object;", "", ApiSince=24)>]
member this.OrElse : Java.Lang.Object -> Java.Lang.Object
Parameters
- other
- Object
the value to be returned, if no value is present.
May be null
.
Returns
the value, if present, otherwise other
- Attributes
Remarks
If a value is present, returns the value, otherwise returns other
.
Java documentation for java.util.Optional.orElse(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.