- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for toSqlTime (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/core/convert/TimeConversionUtilTest.java
* @throws Exception */ @Test public void testToSqlTime_Null() throws Exception { assertThat(toSqlTime(null), is(nullValue())); } /** * @throws Exception */ @Test public void testToTime_EmptyString() throws Exception { assertThat(toSqlTime(""), is(nullValue())); } /** * @throws Exception */ @TestCreated: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Fri Jun 20 13:40:57 GMT 2025 - 9.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/converter/TimeConverter.java
this.pattern = pattern; } @Override public Object getAsObject(final String value) { if (isEmpty(value)) { return null; } return TimeConversionUtil.toSqlTime(value, pattern); } @Override public String getAsString(final Object value) { if (value == null) { return null; }Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 2K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
} else if (propertyType == java.sql.Date.class) { return DateConversionUtil.toSqlDate(arg); } else if (propertyType == Time.class) { return TimeConversionUtil.toSqlTime(arg); } return arg; } private Object convertWithString(final Object arg) { if (stringConstructor != null) {
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 24 01:52:43 GMT 2025 - 15.1K bytes - Click Count (0)