Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 144 for hingga (0.02 sec)

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

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.exception;
    
    import org.codelibs.core.message.MessageFormatter;
    
    /**
     * A base exception class for CoreLib.
     *
     * @author higa
     * @author shinsuke
     */
    public class ClRuntimeException extends RuntimeException {
    
        private static final long serialVersionUID = -4452607868694297329L;
    
        /**
         * The message code.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java

    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import java.lang.reflect.Method;
    
    import org.codelibs.core.lang.MethodUtil;
    
    /**
     * Exception thrown when a {@link Method} cannot be found.
     *
     * @author higa
     *
     */
    public class MethodNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -3508955801981550317L;
    
        /**
         * The target class.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/InputStreamUtil.java

    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    
    import org.codelibs.core.exception.IORuntimeException;
    
    /**
     * Utility class for {@link InputStream}.
     *
     * @author higa
     */
    public abstract class InputStreamUtil {
    
        /**
         * Do not instantiate.
         */
        protected InputStreamUtil() {
        }
    
        /** Default buffer size. */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/SerializeUtil.java

    import java.io.ObjectOutputStream;
    
    import org.codelibs.core.exception.ClassNotFoundRuntimeException;
    import org.codelibs.core.exception.IORuntimeException;
    
    /**
     * Utility for serializing objects.
     *
     * @author higa
     */
    public abstract class SerializeUtil {
    
        /**
         * Do not instantiate.
         */
        protected SerializeUtil() {
        }
    
        private static final int BYTE_ARRAY_SIZE = 8 * 1024;
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java

    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import java.lang.reflect.Constructor;
    
    /**
     * Exception thrown when a {@link Constructor} cannot be found.
     *
     * @author higa
     */
    public class ConstructorNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 8584662068396978822L;
    
        /**
         * The target class.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/naming/InitialContextUtil.java

    import javax.naming.NamingException;
    
    import org.codelibs.core.exception.NamingRuntimeException;
    
    /**
     * Utility class for handling {@link javax.naming.InitialContext InitialContext}.
     *
     * @author higa
     */
    public abstract class InitialContextUtil {
    
        /**
         * Do not instantiate.
         */
        protected InitialContextUtil() {
        }
    
        /**
         * Creates and returns an initial context.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/sql/ResultSetUtil.java

    import java.sql.ResultSet;
    import java.sql.SQLException;
    
    import org.codelibs.core.exception.SQLRuntimeException;
    import org.codelibs.core.log.Logger;
    
    /**
     * Utility class for {@link ResultSet}.
     *
     * @author higa
     */
    public abstract class ResultSetUtil {
    
        private static final Logger logger = Logger.getLogger(ResultSetUtil.class);
    
        /**
         * Do not instantiate.
         */
        protected ResultSetUtil() {
        }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/BeanDesc.java

     *     for (MethodDesc methodDesc : beanDesc.getMethodDescs(methodName)) {
     *         methodDesc.invoke(foo, ...); // Invoke Foo's method
     *     }
     * }
     * </pre>
     *
     * @author higa
     * @see BeanDescFactory
     */
    public interface BeanDesc {
    
        /**
         * Returns the class of the Bean.
         *
         * @param <T>
         *            The class of the Bean
         * @return The class of the Bean
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/xml/SAXParserFactoryUtil.java

    import org.xml.sax.SAXException;
    import org.xml.sax.SAXNotRecognizedException;
    import org.xml.sax.SAXNotSupportedException;
    
    /**
     * Utility class for {@link SAXParser}.
     *
     * @author higa
     */
    public abstract class SAXParserFactoryUtil {
    
        /**
         * Do not instantiate.
         */
        protected SAXParserFactoryUtil() {
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/timer/TimeoutManager.java

    import java.util.concurrent.TimeUnit;
    
    import org.codelibs.core.collection.SLinkedList;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.log.Logger;
    
    /**
     * A class that handles timers.
     *
     * @author higa
     *
     */
    public class TimeoutManager implements Runnable {
    
        private static final Logger logger = Logger.getLogger(TimeoutManager.class);
    
        /**
         * Instance for the singleton.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top