Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for Kuper (0.14 sec)

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

        /**
         * {@link SAXRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public SAXRuntimeException(final SAXException cause) {
            super("ECL0054", asArray(createMessage(cause)), cause);
        }
    
        /**
         * メッセージを作成します。
         *
         * @param cause
         *            原因
         * @return メッセージ
         */
    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/collection/CaseInsensitiveMap.java

            super(capacity);
        }
    
        /**
         * キーが含まれているかどうかを返します。
         *
         * @param key
         *            キー
         * @return キーが含まれているかどうか
         */
        public boolean containsKey(final String key) {
            return super.containsKey(convertKey(key));
        }
    
        @Override
        public V get(final Object key) {
            return super.get(convertKey(key));
        }
    
        @Override
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/ClIndexOutOfBoundsException.java

         * {@link ClIndexOutOfBoundsException}を作成します。
         */
        public ClIndexOutOfBoundsException() {
            super();
        }
    
        /**
         * {@link ClIndexOutOfBoundsException}を作成します。
         *
         * @param message
         *            メッセージ
         */
        public ClIndexOutOfBoundsException(final String message) {
            super(message);
        }
    
    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)
  4. src/main/java/org/codelibs/core/exception/IllegalBlockSizeRuntimeException.java

    public class IllegalBlockSizeRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        public IllegalBlockSizeRuntimeException(final IllegalBlockSizeException cause) {
            super("ECL0105", new Object[] { cause.getMessage() }, cause);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/BadPaddingRuntimeException.java

     *
     */
    public class BadPaddingRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        public BadPaddingRuntimeException(final BadPaddingException cause) {
            super("ECL0105", new Object[] { cause.getMessage() }, cause);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1008 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/IORuntimeException.java

        /**
         * {@link IORuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public IORuntimeException(final IOException cause) {
            super("ECL0040", asArray(cause), cause);
        }
    
    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)
  7. src/main/java/org/codelibs/core/exception/ParserConfigurationRuntimeException.java

         * {@link ParserConfigurationRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public ParserConfigurationRuntimeException(final ParserConfigurationException cause) {
            super("ECL0053", asArray(cause), 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/FieldNotFoundRuntimeException.java

         * @param targetClass
         *            ターゲットクラス
         * @param fieldName
         *            フィールド名
         */
        public FieldNotFoundRuntimeException(final Class<?> targetClass, final String fieldName) {
            super("ECL0070", asArray(targetClass.getName(), fieldName));
            this.targetClass = targetClass;
            this.fieldName = fieldName;
        }
    
        /**
         * ターゲットクラスを返します。
         *
         * @return ターゲットクラス
         */
    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)
  9. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         * @return {@link ConcurrentSkipListMap}の新しいインスタンス
         * @see ConcurrentSkipListMap#ConcurrentSkipListMap(Comparator)
         */
        public static <K, V> ConcurrentSkipListMap<K, V> newConcurrentSkipListMap(final Comparator<? super K> c) {
            return new ConcurrentSkipListMap<>(c);
        }
    
        /**
         * {@link ConcurrentSkipListMap}の新しいインスタンスを作成して返します。
         *
         * @param <K>
         *            {@link ConcurrentSkipListMap}のキーの型
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 53.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/ParseRuntimeException.java

         */
        public ParseRuntimeException(final ParseException cause) {
            super("ECL0050", asArray(cause), cause);
        }
    
        /**
         * {@link ParseRuntimeException}を作成します。
         *
         * @param s
         *            解析できなかった文字列
         */
        public ParseRuntimeException(final String s) {
            super("ECL0051", asArray(s));
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.5K bytes
    - Viewed (0)
Back to top