Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for isupper (0.15 sec)

  1. src/main/java/org/codelibs/core/exception/NoSuchConstructorRuntimeException.java

         *            引数型の並び
         * @param cause
         *            原因となった例外
         */
        public NoSuchConstructorRuntimeException(final Class<?> targetClass, final Class<?>[] argTypes, final Throwable cause) {
            super("ECL0064", asArray(targetClass.getName(), MethodUtil.getSignature(targetClass.getSimpleName(), argTypes)), cause);
            this.targetClass = targetClass;
            this.argTypes = argTypes;
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/SQLRuntimeException.java

        /**
         * {@link SQLRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public SQLRuntimeException(final SQLException cause) {
            super("ECL0072", asArray(getSql(cause), getRealMessage(cause), Integer.toString(cause.getErrorCode()), cause.getSQLState()), cause);
        }
    
        /**
         * <code>SQL</code>を返します。
         *
         * @param cause
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java

         *            引数の配列
         * @param cause
         *            原因となった例外
         */
        public ClIllegalArgumentException(final String argName, final String messageCode, final Object[] args, final Throwable cause) {
            super(MessageFormatter.getMessage(messageCode, args), cause);
            this.argName = argName;
            this.messageCode = messageCode;
            this.args = args;
        }
    
        /**
         * 引数の名前を返します。
         *
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/collection/LruHashMap.java

         * @param initialCapacity
         *            初期容量
         * @param loadFactor
         *            負荷係数
         */
        public LruHashMap(final int limitSize, final int initialCapacity, final float loadFactor) {
            super(initialCapacity, loadFactor, true);
            this.limitSize = limitSize;
        }
    
        /**
         * エントリ数の上限を返します。
         *
         * @return エントリ数の上限
         */
        public int getLimitSize() {
            return limitSize;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java

         * @param methodArgClasses
         *            引数型の並び
         */
        public MethodNotFoundRuntimeException(final Class<?> targetClass, final String methodName, final Class<?>[] methodArgClasses) {
            super("ECL0049", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, methodArgClasses)));
            this.targetClass = targetClass;
            this.methodName = methodName;
            this.methodArgClasses = methodArgClasses;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/ClSQLException.java

         *            SQL文字列
         */
        public ClSQLException(final String messageCode, final Object[] args, final String sqlState, final int vendorCode, final Throwable cause,
                final String sql) {
            super(MessageFormatter.getMessage(messageCode, args), sqlState, vendorCode, cause);
            this.messageCode = messageCode;
            this.args = args;
            this.sql = sql;
        }
    
        /**
         * メッセージコードを返します。
    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)
  7. src/main/java/org/codelibs/core/exception/FileAccessException.java

            super(messageCode, args, cause);
        }
    
        public FileAccessException(final String messageCode, final Object[] args) {
            super(messageCode, args);
        }
    
        public FileAccessException(final String messageCode, final Throwable cause) {
            super(messageCode, new Object[0], cause);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/ClIllegalStateException.java

        /**
         * {@link ClIllegalStateException}を作成します。
         */
        public ClIllegalStateException() {
            super();
        }
    
        /**
         * {@link ClIllegalStateException}を作成します。
         *
         * @param message
         *            メッセージ
         */
        public ClIllegalStateException(final String message) {
            super(message);
        }
    
        /**
         * {@link ClIllegalStateException}を作成します。
         *
         * @param message
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/InterruptedRuntimeException.java

     *
     */
    public class InterruptedRuntimeException extends RuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        public InterruptedRuntimeException(final InterruptedException e) {
            super(e);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 947 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/util/BeanMap.java

        @Override
        public Object get(final Object key) {
            if (!containsKey(key)) {
                throw new IllegalKeyOfBeanMapException(key, this);
            }
            return super.get(key);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.2K bytes
    - Viewed (0)
Back to top