Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KuromojiItem (0.1 sec)

  1. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

    public class KuromojiItem extends DictionaryItem {
        private final String token;
    
        private final String segmentation;
    
        private final String reading;
    
        private final String pos;
    
        private String newToken;
    
        private String newSegmentation;
    
        private String newReading;
    
        private String newPos;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

            return path;
        }
    
        @Override
        public synchronized OptionalEntity<KuromojiItem> get(final long id) {
            if (kuromojiItemList == null) {
                reload(null);
            }
    
            for (final KuromojiItem kuromojiItem : kuromojiItemList) {
                if (id == kuromojiItem.getId()) {
                    return OptionalEntity.of(kuromojiItem);
                }
            }
            return OptionalEntity.empty();
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top