Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Hamel (0.15 sec)

  1. src/test/java/org/codelibs/fess/entity/ParamMapTest.java

            assertTrue(paramMap.containsKey("ccc.ddd"));
            assertFalse(paramMap.containsKey("cccDdd"));
            assertFalse(paramMap.containsKey("DccDdd"));
        }
    
        public void test_camel_get() {
            Map<Object, Object> paramMap = createCamelMap();
    
            assertNull(paramMap.get("xxx"));
            assertEquals("111", paramMap.get("aaa"));
            assertEquals("222", paramMap.get("aaa_bbb"));
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/basicInfoMap.dfprop

        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isTableNameCamelCase: (NotRequired - Default false)
        #  Is the table name camel case?
        #  Basically you don't need this if the style of table name is like 'FOO_STATUS'.
        #    [true]
        #      The table name is camel case.
        #      e.g. If the table name is 'OrderDetail', the class name is 'OrderDetail'.
        #
        #    [false]
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessJsonResourceProvider.java

        public boolean isPrettyPrintSuppressed() {
            return false;
        }
    
        @Override
        public JsonMappingOption provideMappingOption() {
            return new JsonMappingOption().asFieldNaming(JsonFieldNaming.CAMEL_TO_LOWER_SNAKE);
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            return source;
        }
    
        protected Map<String, Object> toLowerHyphen(final Map<String, Object> source) {
            return source.entrySet().stream()
                    .collect(Collectors.toMap(e -> CaseFormat.UPPER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, e.getKey()), e -> {
                        final Object value = e.getValue();
                        if (value instanceof Map) {
                            @SuppressWarnings("unchecked")
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20.8K bytes
    - Viewed (1)
  5. dbflute_fess/dfprop/lastafluteMap.dfprop

    #         ; freeGenList = list:{ [env or config or label or message or html] }
    #         ; propertiesHtmlList = list:{ [env or config or label or message] }
    #     }
    #     ; appMap = map:{
    #         ; [application name, camel case, initial uncapitalised] = map:{
    #             ; path = [relative path to application project from DBFlute client]
    #             ; freeGenList = list:{ [env or config or label or message or html] }
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun May 20 08:20:11 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/ParamMap.java

            }
            String keyStr = key.toString();
            if (keyStr.indexOf('_') < 0) {
                keyStr = CaseFormat.LOWER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, StringUtils.uncapitalize(keyStr));
            } else {
                keyStr = CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, keyStr);
            }
            return keyStr;
        }
    
        @Override
        public int size() {
            return parent.size();
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.3K bytes
    - Viewed (0)
Back to top