- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 230 for high (0.02 sec)
-
src/main/java/org/codelibs/core/exception/EmptyArgumentException.java
* governing permissions and limitations under the License. */ package org.codelibs.core.exception; /** * Exception thrown when an argument is empty. * * @author higa */ public class EmptyArgumentException extends ClIllegalArgumentException { private static final long serialVersionUID = 4625805280526951642L; /** * Creates an {@link EmptyArgumentException}. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/converter/TimestampConverterTest.java
package org.codelibs.core.beans.converter; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.CoreMatchers.not; import static org.junit.Assert.assertThat; import org.junit.Test; /** * @author higa */ public class TimestampConverterTest { /** * @throws Exception */ @Test public void testGetAsObjectAndGetAsString() throws Exception {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanMapTest.java
import static org.junit.Assert.assertThat; import org.codelibs.core.exception.IllegalKeyOfBeanMapException; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; /** * @author higa */ public class BeanMapTest { /** * @see org.junit.rules.ExpectedException */ @Rule public ExpectedException exception = ExpectedException.none(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CaseInsensitiveSet.java
import java.util.AbstractSet; import java.util.Collection; import java.util.Iterator; import java.util.Map; import java.util.Set; /** * {@link Set} that is case-insensitive. * * @author higa */ public class CaseInsensitiveSet extends AbstractSet<String> implements Set<String>, Serializable { static final long serialVersionUID = 0L;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.4K bytes - Viewed (0) -
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; /** * Exception that wraps {@link SQLException}. * * @author higa * @author manhole */ public class SQLRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 2533513110369526191L; /** * Creates a {@link SQLRuntimeException}.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/DocumentBuilderFactoryUtil.java
import org.codelibs.core.exception.ParserConfigurationRuntimeException; import org.codelibs.core.log.Logger; /** * Utility class for {@link DocumentBuilderFactory}. * * @author higa */ public abstract class DocumentBuilderFactoryUtil { private static final Logger logger = Logger.getLogger(DocumentBuilderFactoryUtil.class); /** * Do not instantiate. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.9K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/CalendarConversionUtilTest.java
import org.codelibs.core.exception.NullArgumentException; import org.junit.After; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; /** * @author higa * */ public class CalendarConversionUtilTest { /** * @see org.junit.rules.ExpectedException */ @Rule public ExpectedException exception = ExpectedException.none(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/MyBean.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.beans.util; /** * @author higa */ public class MyBean { /** * */ public String aaa; /** * */ public String bbb;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 803 bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/MyBean2.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.beans.util; import java.util.Date; /** * @author higa */ public class MyBean2 { /** * */ public Date aaa;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 779 bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/AnnotationUtil.java
import java.util.Map; import org.codelibs.core.beans.BeanDesc; import org.codelibs.core.beans.MethodDesc; import org.codelibs.core.beans.factory.BeanDescFactory; /** * Utility class for annotations. * * @author higa */ public abstract class AnnotationUtil { /** * Do not instantiate. */ protected AnnotationUtil() { } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.6K bytes - Viewed (0)