< prev index next >

jdk/src/java.base/share/classes/java/security/PermissionCollection.java

Print this page

        

*** 142,152 **** * @implSpec * The default implementation creates a stream whose source is derived from * the enumeration returned from a call to {@link #elements()}. * * @return a stream of all the Permissions. ! * @since 1.9 */ public Stream<Permission> elementsAsStream() { int characteristics = isReadOnly() ? Spliterator.NONNULL | Spliterator.IMMUTABLE : Spliterator.NONNULL; --- 142,152 ---- * @implSpec * The default implementation creates a stream whose source is derived from * the enumeration returned from a call to {@link #elements()}. * * @return a stream of all the Permissions. ! * @since 9 */ public Stream<Permission> elementsAsStream() { int characteristics = isReadOnly() ? Spliterator.NONNULL | Spliterator.IMMUTABLE : Spliterator.NONNULL;
< prev index next >