OptionalLong.OrElse(Int64) 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", "(J)J", "", ApiSince=24)]
public long OrElse (long other);
[<Android.Runtime.Register("orElse", "(J)J", "", ApiSince=24)>]
member this.OrElse : int64 -> int64
Parameters
- other
- Int64
the value to be returned, if no value is present
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.OptionalLong.orElse(.*long)
.
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.