ISpliterator.Characteristics 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.
Returns a set of characteristics of this Spliterator and its elements.
[Android.Runtime.Register("characteristics", "()I", "GetCharacteristicsHandler:Java.Util.ISpliteratorInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)]
public Java.Util.SpliteratorCharacteristics Characteristics ();
[<Android.Runtime.Register("characteristics", "()I", "GetCharacteristicsHandler:Java.Util.ISpliteratorInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)>]
abstract member Characteristics : unit -> Java.Util.SpliteratorCharacteristics
Returns
a representation of characteristics
- Attributes
Remarks
Returns a set of characteristics of this Spliterator and its elements. The result is represented as ORed values from #ORDERED
, #DISTINCT
, #SORTED
, #SIZED
, #NONNULL
, #IMMUTABLE
, #CONCURRENT
, #SUBSIZED
. Repeated calls to characteristics()
on a given spliterator, prior to or in-between calls to trySplit
, should always return the same result.
If a Spliterator reports an inconsistent set of characteristics (either those returned from a single invocation or across multiple invocations), no guarantees can be made about any computation using this Spliterator.
Java documentation for java.util.Spliterator.characteristics()
.
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.