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

io.whelk.hy.phen.HyphenResult 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 java.util.Collections;
import java.util.List;
import lombok.Data;
import lombok.ToString;
import lombok.experimental.Accessors;

@Data
@Accessors(fluent = true, chain = true)
public class HyphenResult {

  private String originalWord;
  
  private String trieWord;
  
  private String hyphenWord;
  
  @ToString.Exclude
  private List tries = Collections.emptyList();
  
  private List syllables = Collections.emptyList();
  
  @ToString.Exclude
  private boolean isEdgeCase = false;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy