- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for BeanMap (0.33 sec)
-
src/main/java/org/codelibs/core/beans/util/BeanMap.java
/** * A map with String keys that throws an exception when accessing (get) a non-existent key. * * @author higa */ public class BeanMap extends LinkedHashMap<String, Object> { private static final long serialVersionUID = 1; /** * Creates a new {@link BeanMap}. */ public BeanMap() { } @Override public Object get(final Object key) { if (!containsKey(key)) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java
src.aaa = "aaa"; final BeanMap dest = new BeanMap(); BeanUtil.copyBeanToMap(src, dest); assertThat(dest.get("aaa"), is((Object) "aaa")); } /** * @throws Exception */ @Test public void testCopy_mapToBean() throws Exception { final BeanMap src = new BeanMap(); src.put("aaa", "aaa");
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 34.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanMapTest.java
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/exception/IllegalKeyOfBeanMapException.java
*/ package org.codelibs.core.exception; import static org.codelibs.core.collection.ArrayUtil.asArray; import java.util.Map; /** * Exception thrown when using a key not contained in a {@literal BeanMap}. * * @author koichik */ public class IllegalKeyOfBeanMapException extends ClIllegalArgumentException { private static final long serialVersionUID = 3456740832476626338L; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/resources/CLMessages.properties
ECL0013=argument[{0}] is null or empty map. ECL0014=argument[{0}] which is null the index of array is negative integer. ECL0015=argument[{0}] which is null the index of array exceed the size of array[{1}]. ECL0016=key[{0}] is not included in this BeanMap : {1}. ECL0017=Exception occurred, because {0} ECL0041={0}''s creation failure, because {1} ECL0040=IOException occurred, because {0} ECL0042=An illegal access was generated by {0}, because {1}
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Mar 07 01:58:02 UTC 2024 - 3.1K bytes - Viewed (0)