Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 161 for ziga (0.17 sec)

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

     */
    package org.codelibs.core.exception;
    
    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    /**
     * プロパティの値の設定に失敗したときにスローされる例外です。
     *
     * @author higa
     *
     */
    public class IllegalPropertyRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 3584516316082904020L;
    
        private final Class<?> targetClass;
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/beans/factory/BeanDescFactoryTest.java

    import static org.hamcrest.CoreMatchers.sameInstance;
    import static org.junit.Assert.assertThat;
    
    import org.codelibs.core.beans.BeanDesc;
    import org.junit.Test;
    
    /**
     * @author higa
     */
    public class BeanDescFactoryTest {
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetBeanDesc() throws Exception {
    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/test/java/org/codelibs/core/io/ResourceUtilTest.java

    import java.io.IOException;
    import java.net.URL;
    import java.net.URLClassLoader;
    
    import junit.framework.TestCase;
    
    import org.codelibs.core.exception.ResourceNotFoundRuntimeException;
    
    /**
     * @author higa
     *
     */
    public class ResourceUtilTest extends TestCase {
    
        /**
         * @throws Exception
         */
        public void testGetResourcePath() throws Exception {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/convert/BigDecimalConversionUtil.java

     */
    package org.codelibs.core.convert;
    
    import java.math.BigDecimal;
    import java.text.SimpleDateFormat;
    
    import org.codelibs.core.lang.StringUtil;
    
    /**
     * {@link BigDecimal}用の変換ユーティリティです。
     *
     * @author higa
     */
    public abstract class BigDecimalConversionUtil {
    
        /**
         * {@link BigDecimal}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @return 変換された{@link BigDecimal}
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/convert/DoubleConversionUtil.java

    package org.codelibs.core.convert;
    
    import java.text.SimpleDateFormat;
    
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.text.DecimalFormatUtil;
    
    /**
     * {@link Double}用の変換ユーティリティです。
     *
     * @author higa
     */
    public abstract class DoubleConversionUtil {
    
        /**
         * {@link Double}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @return 変換された{@link Double}
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/NoSuchConstructorRuntimeException.java

    import java.lang.reflect.Constructor;
    
    import org.codelibs.core.lang.MethodUtil;
    
    /**
     * {@link Constructor}が見つからない場合にスローされる{@link NoSuchMethodException}をラップする例外です。
     *
     * @author higa
     */
    public class NoSuchConstructorRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 8688818589925114466L;
    
        private final Class<?> targetClass;
    
    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)
  7. src/main/java/org/codelibs/core/lang/ConstructorUtil.java

    import org.codelibs.core.exception.InstantiationRuntimeException;
    import org.codelibs.core.exception.InvocationTargetRuntimeException;
    
    /**
     * {@link Constructor}用のユーティリティクラスです。
     *
     * @author higa
     */
    public abstract class ConstructorUtil {
    
        /**
         * 指定された初期化パラメータで、コンストラクタの宣言クラスの新しいインスタンスを作成および初期化します。
         *
         * @param <T>
         *            コンストラクタの宣言クラス
         * @param constructor
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/sql/PreparedStatementUtil.java

    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    
    import org.codelibs.core.exception.SQLRuntimeException;
    
    /**
     * {@link PreparedStatement}用のユーティリティクラスです。
     *
     * @author higa
     */
    public abstract class PreparedStatementUtil {
    
        /**
         * クエリを実行します。
         *
         * @param ps
         *            {@link PreparedStatement}。{@literal null}であってはいけません
         * @return {@link ResultSet}
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/SQLRuntimeException.java

    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import java.sql.SQLException;
    
    import org.codelibs.core.message.MessageFormatter;
    
    /**
     * {@link SQLException}をラップする例外です。
     *
     * @author higa
     * @author manhole
     */
    public class SQLRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 2533513110369526191L;
    
        /**
         * {@link SQLRuntimeException}を作成します。
    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)
  10. src/main/java/org/codelibs/core/message/MessageFormatter.java

    import org.codelibs.core.io.ResourceBundleUtil;
    import org.codelibs.core.misc.DisposableUtil;
    import org.codelibs.core.misc.LocaleUtil;
    
    /**
     * メッセージコードと引数からメッセージを組み立てるクラスです。
     *
     * @author higa
     */
    public abstract class MessageFormatter {
    
        /** メッセージコードの数値部の長さ */
        protected static final int CODE_NUMBER_LENGTH = 4;
    
        /** メッセージコードに対応するリソースバンドル名の接尾辞 */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.6K bytes
    - Viewed (0)
Back to top