Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MappingItem (0.41 sec)

  1. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

            if (mappingItemList == null) {
                reload(null);
            }
    
            for (final CharMappingItem mappingItem : mappingItemList) {
                if (id == mappingItem.getId()) {
                    return OptionalEntity.of(mappingItem);
                }
            }
            return OptionalEntity.empty();
        }
    
        /**
         * Retrieves a paginated list of character mapping items.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

         * Returns a string representation of this CharMappingItem including all fields.
         *
         * @return string representation of this object
         */
        @Override
        public String toString() {
            return "MappingItem [id=" + id + ", inputs=" + Arrays.toString(inputs) + ", output=" + output + ", newInputs="
                    + Arrays.toString(newInputs) + ", newOutput=" + newOutput + "]";
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
Back to top