Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getIndexFiletype (0.16 sec)

  1. src/main/java/org/codelibs/fess/helper/FileTypeHelper.java

        protected String defaultValue = "others";
    
        protected Map<String, String> mimetypeMap = new LinkedHashMap<>();
    
        @PostConstruct
        public void init() {
            StreamUtil.split(ComponentUtil.getFessConfig().getIndexFiletype(), "\n")
                    .of(stream -> stream.filter(StringUtil::isNotBlank).forEach(s -> {
                        final String[] values = StringUtils.split(s, "=", 2);
                        if (values.length == 2) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * image/jpeg=jpg<br>
         *  <br>
         * comment: filetype
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexFiletype();
    
        /**
         * Get the value for the key 'index.reindex.size'. <br>
         * The value is, e.g. 100 <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
Back to top