- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for copyMapToNewBean (0.05 sec)
-
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
* @param destClass The type of the destination Bean. Must not be {@literal null}. * @return The newly copied {@literal Map}. */ public static <T> T copyMapToNewBean(final Map<String, ? extends Object> src, final Class<T> destClass) { return copyMapToNewBean(src, destClass, DEFAULT_OPTIONS); } /** * Copies the source {@literal Map} to a new instance of the destination Bean and returns it. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java
for (final SearchHit searchHit : searchHits) { final Map<String, Object> source = searchHit.getSourceAsMap(); final OpenSearchAccessResult accessResult = BeanUtil.copyMapToNewBean(source, OpenSearchAccessResult.class, option -> { option.converter(new EsTimestampConverter(), timestampFields).excludeWhitespace();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 10.9K bytes - Viewed (0) -
README.md
BeanUtil.copyBeanToBean(source, destination, options -> options.exclude("password", "internalId")); // Convert between beans and maps Map<String, Object> map = BeanUtil.copyBeanToNewMap(bean); MyBean newBean = BeanUtil.copyMapToNewBean(map, MyBean.class); ``` ### Type Conversion ```java import org.codelibs.core.convert.*; // Safe type conversions with null handling
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
if (response.isExists()) { final Map<String, Object> source = response.getSource(); final T bean = BeanUtil.copyMapToNewBean(source, clazz, option -> { option.converter(new EsTimestampConverter(), timestampFields).excludeWhitespace(); option.exclude(OpenSearchAccessResult.ACCESS_RESULT_DATA); });
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 34.2K bytes - Viewed (0)