All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.whelk.hy.phen.Trie Maven / Gradle / Ivy

Go to download

Java OSS library for calculating syllables and hyphenation using Frank Liang's doctoral thesis.

There is a newer version: 0.1.14
Show newest version
package io.whelk.hy.phen;

import lombok.Data;
import lombok.RequiredArgsConstructor;
import lombok.ToString;
import lombok.experimental.Accessors;

@Data
@RequiredArgsConstructor
@Accessors(fluent = true)
public class Trie {

  private final String value;
  
  @ToString.Exclude
  private final String matcher;
  
  @ToString.Exclude
  private final char[] arr;
  
  @ToString.Exclude
  private final boolean isLeadingMatch;
  
  @ToString.Exclude
  private final boolean isTrailingMatch;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy