
com.github.houbb.sentence.segment.api.ISentenceSegmentResult Maven / Gradle / Ivy
package com.github.houbb.sentence.segment.api;
/**
* @author binbin.hou
* @since 0.0.1
*/
public interface ISentenceSegmentResult {
/**
* 句子
* @return 句子
* @since 0.0.1
*/
String sentence();
/**
* 开始下标
* @return 开始下标
* @since 0.0.1
*/
int startIndex();
/**
* 结束下标
* @return 结束下标
* @since 0.0.1
*/
int endIndex();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy