Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for Vong (0.12 sec)

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

    /**
     * {@link NoSuchPaddingException}をラップする例外です。
     *
     * @author shinsuke
     */
    public class NoSuchPaddingRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -3176447530746274091L;
    
        /**
         * {@link NoSuchPaddingException}を作成します。
         *
         * @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)
  2. src/main/java/org/codelibs/core/exception/IllegalKeyOfBeanMapException.java

    import java.util.Map;
    
    /**
     * {@literal BeanMap}に含まれていないキーを使用した場合にスローされる例外です。
     *
     * @author koichik
     */
    public class IllegalKeyOfBeanMapException extends ClIllegalArgumentException {
    
        private static final long serialVersionUID = 3456740832476626338L;
    
        /**
         * インスタンスを構築します。
         *
         * @param key
         *            マップのキー
         * @param map
         *            マップ
         */
    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)
  3. src/main/java/org/codelibs/core/exception/InstantiationRuntimeException.java

    /**
     * {@link InstantiationException}をラップする例外です。
     *
     * @author higa
     */
    public class InstantiationRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 5220902071756706607L;
    
        private final Class<?> targetClass;
    
        /**
         * {@link InstantiationRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
    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)
  4. src/main/java/org/codelibs/core/exception/InvocationTargetRuntimeException.java

    /**
     * {@link InvocationTargetException}をラップする例外です。
     *
     * @author higa
     */
    public class InvocationTargetRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 7760491787158046906L;
    
        private final Class<?> targetClass;
    
        /**
         * {@link InvocationTargetRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/ClassNotFoundRuntimeException.java

    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    /**
     * クラスが見つからないときにスローされる例外です。
     *
     * @author higa
     */
    public class ClassNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -9022468864937761059L;
    
        private final String className;
    
        /**
         * {@link ClassNotFoundRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
    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)
  6. src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java

    /**
     * プロパティが見つからなかった場合にスローされる例外です。
     *
     * @author higa
     *
     */
    public class PropertyNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -5177019197796206774L;
    
        private final Class<?> targetClass;
    
        private final String propertyName;
    
        /**
         * {@link PropertyNotFoundRuntimeException}を返します。
         *
    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)
  7. src/main/java/org/codelibs/core/exception/FieldNotStaticRuntimeException.java

    /**
     * オブジェクトを指定せずに非{@literal static}な{@link Field}にアクセスした場合にスローされる例外です。
     *
     * @author koichik
     */
    public class FieldNotStaticRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -7791347225750660981L;
    
        private final Class<?> targetClass;
    
        private final String fieldName;
    
        /**
         * {@link FieldNotStaticRuntimeException}を作成します。
         *
    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)
  8. src/main/java/org/codelibs/core/exception/NoSuchMethodRuntimeException.java

    import org.codelibs.core.lang.MethodUtil;
    
    /**
     * {@link NoSuchMethodException}をラップする例外です。
     *
     * @author higa
     */
    public class NoSuchMethodRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -5673845060079098617L;
    
        private final Class<?> targetClass;
    
        private final String methodName;
    
        private final Class<?>[] argTypes;
    
        /**
    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)
  9. src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java

    import java.lang.reflect.Constructor;
    
    /**
     * {@link Constructor}が見つからなかったときにスローされる例外Vです。
     *
     * @author higa
     */
    public class ConstructorNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 8584662068396978822L;
    
        private final Class<?> targetClass;
    
        private final Object[] methodArgs;
    
        private final Class<?>[] paramTypes;
    
        /**
    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)
  10. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

        }
    
        /**
         * デフォルロケールで{@link DateFormat#LONG}スタイルのパターン文字列を返します。
         *
         * @return {@link DateFormat#LONG}スタイルのパターン文字列
         */
        public static String getLongPattern() {
            return getLongPattern(LocaleUtil.getDefault());
        }
    
        /**
         * 指定されたロケールで{@link DateFormat#LONG}スタイルのパターン文字列を返します。
         *
         * @param locale
    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)
Back to top