io.whelk.hy.phen.Trie Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whelk-hy-phen-a-tion Show documentation
Show all versions of whelk-hy-phen-a-tion Show documentation
Java OSS library for calculating syllables and hyphenation using Frank Liang's doctoral thesis.
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