Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BoostDocumentRuleDbm (0.15 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/BoostDocumentRuleDbm.java

        //                                                                           =========
        private static final BoostDocumentRuleDbm _instance = new BoostDocumentRuleDbm();
    
        private BoostDocumentRuleDbm() {
        }
    
        public static BoostDocumentRuleDbm getInstance() {
            return _instance;
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsBoostDocumentRule.java

        //                                                                             =======
        @Override
        public BoostDocumentRuleDbm asDBMeta() {
            return BoostDocumentRuleDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "boost_document_rule";
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsBoostDocumentRuleCB.java

        //                                                                             =======
        @Override
        public BoostDocumentRuleDbm asDBMeta() {
            return BoostDocumentRuleDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "boost_document_rule";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsbhv/BsBoostDocumentRuleBhv.java

            return "boost_document_rule";
        }
    
        @Override
        public String asEsSearchType() {
            return "boost_document_rule";
        }
    
        @Override
        public BoostDocumentRuleDbm asDBMeta() {
            return BoostDocumentRuleDbm.getInstance();
        }
    
        @Override
        protected <RESULT extends BoostDocumentRule> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) {
            try {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top