Searched defs:ORDERED (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DSpliterator.java50 * structure, source, and elements from among {@link #ORDERED},
61 * {@code ORDERED}, traversal methods must conform to their documented ordering.
239 * return ORDERED | SIZED | IMMUTABLE | SUBSIZED;
300 * Spliterator is {@link #ORDERED} the action is performed on the
314 * throws an exception. If this Spliterator is {@link #ORDERED}, actions
334 * <p>If this Spliterator is {@link #ORDERED}, the returned Spliterator
414 * #ORDERED}, {@link #DISTINCT}, {@link #SORTED}, {@link #SIZED},
483 * {@code ORDERED} are expected to preserve ordering constraints in
486 public static final int ORDERED = 0x00000010; field in interface:Spliterator
502 * {@code ORDERED}
[all...]
/libcore/ojluni/src/main/java/java/util/stream/
H A DStreamOpFlag.java51 * <th>{@code ORDERED}</th>
136 * {@link java.util.Spliterator#ORDERED}, and
219 * DISTINCT SORTED ORDERED SIZED SHORT_CIRCUIT
281 // Matches Spliterator.ORDERED
282 ORDERED(2, enum constant in enum:StreamOpFlag
609 * The bit value to set or inject {@link #ORDERED}.
611 public static final int IS_ORDERED = ORDERED.set;
614 * The bit value to clear {@link #ORDERED}.
616 public static final int NOT_ORDERED = ORDERED.clear;

Completed in 39 milliseconds