- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for TestClass (0.03 sec)
-
android/guava-tests/test/com/google/common/base/MoreObjectsTest.java
tester.testAllPublicStaticMethods(MoreObjects.class); tester.testAllPublicInstanceMethods(MoreObjects.toStringHelper(new TestClass())); } /** Test class for testing formatting of inner classes. */ private static class TestClass {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
*/ protected static <T> T copyMapToNewBean(final Map<String, ? extends Object> src, final Class<T> destClass, final CopyOptions options) { assertArgumentNotNull("src", src); assertArgumentNotNull("destClass", destClass); assertArgumentNotNull("options", options); final T dest = ClassUtil.newInstance(destClass); copyMapToBean(src, dest, options); return dest; } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
* @param src the source bean object * @param destClass the class of the destination bean * @return a new instance of the destination class with copied properties */ protected static <T> T copyBeanToNewBean(final Object src, final Class<T> destClass) { return BeanUtil.copyBeanToNewBean(src, destClass); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java
} /** * */ @Test public void testCopyBeanToNewBean_DestClassNull() { exception.expect(NullArgumentException.class); exception.expectMessage(is("[ECL0008]argument[destClass] is null.")); BeanUtil.copyBeanToNewBean(new Object(), (Class<?>) null); } /** * */ @Test public void testCopyMapToNewBean_SrcNull() {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 34.5K bytes - Viewed (0)