Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StreamOf (0.76 sec)

  1. src/main/java/org/codelibs/core/stream/StreamUtil.java

         * @param map the map to create a stream from; if {@code null}, an empty stream is returned
         * @return a {@link StreamOf} containing the entries of the map, or an empty stream if the map is {@code null}
         */
        public static <K, V> StreamOf<Map.Entry<K, V>> stream(final Map<K, V> map) {
            return new StreamOf<>(() -> map != null ? map.entrySet().stream() : Collections.<K, V> emptyMap().entrySet().stream());
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

     */
    package org.codelibs.fess.auth;
    
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import org.apache.commons.lang3.ArrayUtils;
    import org.codelibs.core.stream.StreamUtil.StreamOf;
    import org.codelibs.fess.auth.chain.AuthenticationChain;
    import org.codelibs.fess.opensearch.user.exentity.User;
    
    /**
     * Manages authentication operations across multiple authentication chains.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.1K bytes
    - Viewed (0)
Back to top