Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getDefaultValue (1.19 sec)

  1. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

                return defaultValue != null ? defaultValue.toString() : StringUtil.EMPTY;
            } catch (final Exception e) {
                return StringUtil.EMPTY;
            }
        }
    
        private String getDefaultMaxKey() {
            try {
                final Method method = CustomSize.class.getMethod("maxKey");
                final Object defaultValue = method.getDefaultValue();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

                final Method method = UriType.class.getMethod("protocolType");
                assertNotNull("protocolType method should exist", method);
                assertNull("protocolType should not have default value", method.getDefaultValue());
            } catch (final NoSuchMethodException e) {
                fail("protocolType method should exist");
            }
        }
    
        // Test annotation hashCode and equals behavior
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top