Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for labelTypeId (0.08 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsElevateWordToLabelCQ.java

        }
    
        public void setLabelTypeId_Equal(String labelTypeId) {
            setLabelTypeId_Term(labelTypeId, null);
        }
    
        public void setLabelTypeId_Equal(String labelTypeId, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setLabelTypeId_Term(labelTypeId, opLambda);
        }
    
        public void setLabelTypeId_Term(String labelTypeId) {
            setLabelTypeId_Term(labelTypeId, null);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsElevateWordToLabelCA.java

            setLabelTypeId_Terms("labelTypeId", opLambda, null);
        }
    
        public void setLabelTypeId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda,
                OperatorCall<BsElevateWordToLabelCA> aggsLambda) {
            setLabelTypeId_Terms("labelTypeId", opLambda, aggsLambda);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsElevateWordToLabel.java

            this.elevateWordId = value;
        }
    
        public String getLabelTypeId() {
            checkSpecifiedProperty("labelTypeId");
            return convertEmptyToNull(labelTypeId);
        }
    
        public void setLabelTypeId(String value) {
            registerModifiedProperty("labelTypeId");
            this.labelTypeId = value;
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ElevateWordToLabelDbm.java

                false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnLabelTypeId = cci("labelTypeId", "labelTypeId", null, null, String.class, "labelTypeId", null, false,
                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    
        public ColumnInfo columnElevateWordId() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsElevateWordToLabelCB.java

                doColumn("_id");
            }
    
            public void columnElevateWordId() {
                doColumn("elevateWordId");
            }
    
            public void columnLabelTypeId() {
                doColumn("labelTypeId");
            }
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsElevateWordToLabelBhv.java

            try {
                final RESULT result = entityType.newInstance();
                result.setElevateWordId(DfTypeUtil.toString(source.get("elevateWordId")));
                result.setLabelTypeId(DfTypeUtil.toString(source.get("labelTypeId")));
                return updateEntity(source, result);
            } catch (InstantiationException | IllegalAccessException e) {
                final String msg = "Cannot create a new instance: " + entityType.getName();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top