Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for convertEmptyToNull (0.26 sec)

  1. src/main/java/org/codelibs/fess/es/user/bsentity/BsGroup.java

            registerModifiedProperty("gidNumber");
            this.gidNumber = value;
        }
    
        public String getName() {
            checkSpecifiedProperty("name");
            return convertEmptyToNull(name);
        }
    
        public void setName(String value) {
            registerModifiedProperty("name");
            this.name = value;
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

        //                                                                        Empty String
        //                                                                        ============
        protected String convertEmptyToNull(String value) {
            return (value != null && value.length() == 0) ? null : value;
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

        //                                                                        Empty String
        //                                                                        ============
        protected String convertEmptyToNull(String value) {
            return (value != null && value.length() == 0) ? null : value;
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top