- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 149 for hiya (0.01 sec)
-
src/main/java/org/codelibs/core/convert/BigIntegerConversionUtil.java
* governing permissions and limitations under the License. */ package org.codelibs.core.convert; import java.math.BigInteger; /** * Utility class for conversions related to {@link BigInteger}. * * @author higa */ public abstract class BigIntegerConversionUtil { /** * Do not instantiate. */ protected BigIntegerConversionUtil() { } /** * Converts to {@link BigInteger}.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConverterRuntimeException.java
import static org.codelibs.core.collection.ArrayUtil.asArray; import org.codelibs.core.beans.Converter; /** * Exception thrown when an error occurs in a {@link Converter}. * * @author higa */ public class ConverterRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1L; /** * The name of the property. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchFieldRuntimeException.java
*/ package org.codelibs.core.exception; import static org.codelibs.core.collection.ArrayUtil.asArray; /** * Exception that wraps {@link NoSuchFieldException}. * * @author higa */ public class NoSuchFieldRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 6609175673610180338L; /** * The target class. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/SqlDateConverter.java
import org.codelibs.core.convert.DateConversionUtil; import org.codelibs.core.convert.StringConversionUtil; import org.codelibs.core.lang.StringUtil; /** * Converter for SQL dates. * * @author higa */ public class SqlDateConverter implements Converter { /** * The date pattern. */ protected String pattern; /** * Constructs an instance. * * @param pattern
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/converter/DateConverterTest.java
import static org.hamcrest.CoreMatchers.not; import static org.junit.Assert.assertThat; import java.sql.Timestamp; import java.util.Date; import org.junit.Test; /** * @author higa * */ public class DateConverterTest { /** * @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/converter/TimeConverterTest.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 TimeConverterTest { /** * @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/lang/AnnotationUtilTest.java
import static org.junit.Assert.assertThat; import java.lang.annotation.Annotation; import java.lang.reflect.Method; import java.util.Map; import org.junit.Test; /** * @author higa */ public class AnnotationUtilTest { /** * @throws Exception */ @Hoge(bbb = "3") @Test public void testGetProperties() throws Exception {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/timer/TimeoutManagerTest.java
* governing permissions and limitations under the License. */ package org.codelibs.core.timer; import junit.framework.TestCase; /** * @author higa * */ public class TimeoutManagerTest extends TestCase { private int expiredCount; protected void setUp() throws Exception { expiredCount = 0; TimeoutManager.getInstance().clear();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/DecimalFormatUtil.java
import java.text.DecimalFormat; import java.text.DecimalFormatSymbols; import java.util.Locale; import org.codelibs.core.misc.LocaleUtil; /** * Utility class for {@link DecimalFormat}. * * @author higa */ public abstract class DecimalFormatUtil { /** * Do not instantiate. */ protected DecimalFormatUtil() { } /** * Normalizes the string representation of a number.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/LocaleUtil.java
*/ package org.codelibs.core.misc; import java.util.Locale; import java.util.function.Supplier; /** * Utility class for {@link Locale}. * * @author higa */ public abstract class LocaleUtil { /** * Do not instantiate. */ protected LocaleUtil() { } /** * Returns a {@link Locale}. * * @param localeStr
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.2K bytes - Viewed (0)