Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 165 for full (0.13 sec)

  1. src/main/java/org/codelibs/core/naming/InitialContextUtil.java

            }
        }
    
        /**
         * 指定した初期コンテキストから指定されたオブジェクトを取得して返します。
         *
         * @param ctx
         *            初期コンテキスト。{@literal null}であってはいけません
         * @param jndiName
         *            検索するオブジェクトの名前。{@literal null}や空文字列であってはいけません
         * @return <code>jndiName</code>にバインドされているオブジェクト
         * @throws NamingRuntimeException
         *             初期コンテキストを作成できなかった場合にスローされます
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/ObjectUtil.java

         * ObjectUtil.defaultValue(null, null) = null
         * </pre>
         *
         * @param <T>
         *            オブジェクトの型
         * @param t
         *            オブジェクト(<code>null</code>可)
         * @param defaultValue
         *            引数のオブジェクトが<code>null</code>だったら返すオブジェクト(<code>null</code>可)
         * @return オブジェクトを返します。オブジェクトが<code>null</code>だったら<code>defaultValue</code>
         *         を返します。
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/ResourceBundleUtil.java

        /**
         * {@literal locale}が{@literal null}でなければ{@literal locale}を、{@literal null}
         * ならデフォルトのロケールを返します。
         *
         * @param locale
         *            ロケール
         * @return {@literal locale}が{@literal null}でなければ{@literal locale}を、
         *         {@literal null}ならデフォルトのロケールを返します。
         */
        protected static Locale getLocale(final Locale locale) {
            if (locale != null) {
                return locale;
            }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

            copyBeanToBean(src, dest, buildCopyOptions(option));
        }
    
        /**
         * BeanからBeanにコピーを行います。
         *
         * @param src コピー元のBean。{@literal null}であってはいけません
         * @param dest コピー先のBean。{@literal null}であってはいけません
         * @param options コピーのオプション。{@literal null}であってはいけません
         * @see CopyOptionsUtil
         */
        protected static void copyBeanToBean(final Object src, final Object dest, final CopyOptions options) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/log/JulLoggerAdapter.java

        }
    
        @Override
        public void info(final String message, final Throwable t) {
            logger.logp(Level.INFO, sourceClass, null, message, t);
        }
    
        @Override
        public boolean isDebugEnabled() {
            return logger.isLoggable(Level.FINE);
        }
    
        @Override
        public void debug(final String message) {
            logger.logp(Level.FINE, sourceClass, null, message);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

            if (methodDescs == null) {
                return null;
            }
            for (final MethodDesc methodDesc : methodDescs) {
                if (Arrays.equals(paramTypes, methodDesc.getParameterTypes())) {
                    return methodDesc;
                }
            }
            return null;
        }
    
        @Override
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/CopyUtil.java

         *
         * @param in
         *            入力ファイル。{@literal null}であってはいけません
         * @param inputEncoding
         *            入力ファイルのエンコーディング。{@literal null}や空文字列であってはいけません
         * @param out
         *            出力ファイル。{@literal null}であってはいけません
         * @param outputEncoding
         *            出力ファイルのエンコーディング。{@literal null}や空文字列であってはいけません
         * @return コピーした文字数
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 52.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java

                return null;
            }
            final ParameterizedClassDesc pcd = parameterizedClassDesc.getArguments()[0];
            if (pcd == null) {
                return null;
            }
            return pcd.getRawClass();
        }
    
        @Override
        public Class<?> getValueClassOfMap() {
            if (!Map.class.isAssignableFrom(fieldType) || !isParameterized()) {
                return null;
            }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/ClSQLException.java

         * @param messageCode
         *            メッセージコード
         * @param args
         *            引数の並び
         */
        public ClSQLException(final String messageCode, final Object[] args) {
            this(messageCode, args, null, 0, null, null);
        }
    
        /**
         * {@link ClSQLException}を作成します。
         *
         * @param messageCode
         *            メッセージコード
         * @param args
         *            引数の並び
         * @param cause
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/main/resources/CLMessages.properties

    ECL0001={0} not found
    ECL0008=argument[{0}] is null.
    ECL0009=argument[{0}] is illegal. because {1}.
    ECL0010=argument[{0}] is null or empty string.
    ECL0011=argument[{0}] is null or empty array.
    ECL0012=argument[{0}] is null or empty collection.
    ECL0013=argument[{0}] is null or empty map.
    ECL0014=argument[{0}] which is null the index of array is negative integer.
    ECL0015=argument[{0}] which is null the index of array exceed the size of array[{1}].
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 3.1K bytes
    - Viewed (0)
Back to top