Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Kull (0.17 sec)

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

        /**
         * 引数が<code>null</code>でないことを表明します。
         *
         * @param argName
         *            {@code null} であってはならない引数の名前
         * @param argValue
         *            引数の値
         * @throws NullArgumentException
         *             引数が<code>null</code>の場合。
         */
        public static void assertArgumentNotNull(final String argName, final Object argValue) {
            if (argValue == null) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12.5K bytes
    - Viewed (0)
Back to top