Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for function (0.18 sec)

  1. src/main/java/org/codelibs/core/misc/LocaleUtil.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.misc;
    
    import java.util.Locale;
    import java.util.function.Supplier;
    
    /**
     * {@link Locale}用のユーティリティクラスです。
     *
     * @author higa
     */
    public abstract class LocaleUtil {
    
        /**
         * {@link Locale}を返します。
         *
         * @param localeStr
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/stream/StreamUtil.java

     */
    package org.codelibs.core.stream;
    
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.Map;
    import java.util.function.Consumer;
    import java.util.function.Function;
    import java.util.function.Supplier;
    import java.util.stream.Stream;
    
    public class StreamUtil {
        private StreamUtil() {
            // nothing
        }
    
        @SafeVarargs
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2K bytes
    - Viewed (0)
Back to top