Example usage for java.util Spliterator.OfLong characteristics

List of usage examples for java.util Spliterator.OfLong characteristics

Introduction

In this page you can find the example usage for java.util Spliterator.OfLong characteristics.

Prototype

int characteristics();

Source Link

Document

Returns a set of characteristics of this Spliterator and its elements.

Usage

From source file:Main.java

public static void main(String[] args) {
    LongStream b = LongStream.of(1L, 2L, Long.MAX_VALUE, Long.MIN_VALUE);
    Spliterator.OfLong o = b.spliterator();

    System.out.println(o.characteristics());
}