Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for Vong (0.14 sec)

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

    package org.codelibs.core.exception;
    
    /**
     * {@link IndexOutOfBoundsException}をラップする例外です。
     *
     * @author wyukawa
     */
    public class ClIndexOutOfBoundsException extends IndexOutOfBoundsException {
    
        private static final long serialVersionUID = -824874776607593608L;
    
        /**
         * {@link ClIndexOutOfBoundsException}を作成します。
         */
        public ClIndexOutOfBoundsException() {
            super();
        }
    
        /**
    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)
  2. src/main/java/org/codelibs/core/exception/IORuntimeException.java

    import java.io.IOException;
    
    /**
     * {@link IOException}をラップする例外です。
     *
     * @author higa
     */
    public class IORuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1533554330702215389L;
    
        /**
         * {@link IORuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public IORuntimeException(final IOException 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)
  3. src/main/java/org/codelibs/core/exception/ParserConfigurationRuntimeException.java

    /**
     * {@link ParserConfigurationException}をラップする例外です。
     *
     * @author higa
     */
    public class ParserConfigurationRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -4610465906028959083L;
    
        /**
         * {@link ParserConfigurationRuntimeException}を作成します。
         *
         * @param 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)
  4. src/main/java/org/codelibs/core/exception/FieldNotFoundRuntimeException.java

    import java.lang.reflect.Field;
    
    /**
     * {@link Field}が見つからない場合にスローされる例外です。
     *
     * @author higa
     *
     */
    public class FieldNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -2715036865146285893L;
    
        private final Class<?> targetClass;
    
        private final String fieldName;
    
        /**
         * {@link FieldNotFoundRuntimeException}を作成します。
         *
    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)
  5. src/main/java/org/codelibs/core/lang/ClassUtil.java

            wrapperToPrimitiveMap.put(Byte.class, Byte.TYPE);
            wrapperToPrimitiveMap.put(Short.class, Short.TYPE);
            wrapperToPrimitiveMap.put(Integer.class, Integer.TYPE);
            wrapperToPrimitiveMap.put(Long.class, Long.TYPE);
            wrapperToPrimitiveMap.put(Float.class, Float.TYPE);
            wrapperToPrimitiveMap.put(Double.class, Double.TYPE);
    
            primitiveToWrapperMap.put(Boolean.TYPE, Boolean.class);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/collection/CaseInsensitiveMap.java

    /**
     * キーで大文字小文字を気にしない {@link ArrayMap}です。
     *
     * @author higa 値の型
     * @param <V>
     *            値の型
     */
    public class CaseInsensitiveMap<V> extends ArrayMap<String, V> {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * {@link CaseInsensitiveMap}を作成します。
         */
        public CaseInsensitiveMap() {
        }
    
        /**
         * {@link CaseInsensitiveMap}を作成します。
         *
         * @param capacity
    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)
  7. src/main/java/org/codelibs/core/timer/TimeoutManager.java

         * @param timeoutMillis
         *            待機する時間(ミリ秒単位)
         * @return スレッドが終了した場合は<code>true</code>
         * @throws InterruptedException
         *             待機中に割り込まれた場合
         */
        public boolean stop(final long timeoutMillis) throws InterruptedException {
            final Thread t = this.thread;
            synchronized (this) {
                if (t == null) {
                    return true;
                }
                this.thread = null;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/ArrayMap.java

     * @param <K>
     *            キーの型
     * @param <V>
     *            値の型
     *
     */
    public class ArrayMap<K, V> extends AbstractMap<K, V> implements Map<K, V>, Cloneable, Externalizable {
    
        private static final long serialVersionUID = 1L;
    
        /** 初期容量のデフォルト値 */
        public static final int INITIAL_CAPACITY = 17;
    
        /** 負荷係数のデフォルト値 */
        public static final float LOAD_FACTOR = 0.75f;
    
        /** 負荷係数 */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 20.6K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/core/collection/SLinkedList.java

    /**
     * Seasar2用の連結リストです。
     *
     * @author higa
     * @param <E>
     *            要素の型
     *
     */
    public class SLinkedList<E> implements Cloneable, Externalizable {
    
        static final long serialVersionUID = 1L;
    
        private transient Entry header = new Entry(null, null, null);
    
        private transient int size = 0;
    
        /**
         * {@link SLinkedList}を作成します。
         */
        public SLinkedList() {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/core/convert/LongConversionUtil.java

    /**
     * {@link Long}用の変換ユーティリティです。
     *
     * @author higa
     */
    public abstract class LongConversionUtil {
    
        /**
         * {@link Long}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @return 変換された{@link Long}
         */
        public static Long toLong(final Object o) {
            return toLong(o, null);
        }
    
        /**
         * {@link Long}に変換します。
         *
         * @param o
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.7K bytes
    - Viewed (0)
Back to top