opennlp.tools.sentdetect.SentenceSample Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreemnets. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package opennlp.tools.sentdetect;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import opennlp.tools.cmdline.tokenizer.DictionaryDetokenizerTool;
import opennlp.tools.tokenize.Detokenizer;
import opennlp.tools.tokenize.Detokenizer.DetokenizationOperation;
import opennlp.tools.util.Span;
/**
* A {@link SentenceSample} contains a document with
* begin indexes of the individual sentences.
*/
public class SentenceSample {
private final String document;
private final List sentences;
/**
* Initializes the current instance.
*
* @param sentences
* @param sentenceSpans
*/
public SentenceSample(String document, Span... sentences) {
this.document = document;
this.sentences = Collections.unmodifiableList(new ArrayList(Arrays.asList(sentences)));;
}
public SentenceSample(Detokenizer detokenizer, String[][] sentences) {
List spans = new ArrayList(sentences.length);
StringBuilder documentBuilder = new StringBuilder();
for (String sentenceTokens[] : sentences) {
DetokenizationOperation operations[] = detokenizer.detokenize(sentenceTokens);
String sampleSentence = DictionaryDetokenizerTool.detokenize(sentenceTokens, operations);
int beginIndex = documentBuilder.length();
documentBuilder.append(sampleSentence);
spans.add(new Span(beginIndex, documentBuilder.length()));
}
document = documentBuilder.toString();
this.sentences = Collections.unmodifiableList(spans);
}
/**
* Retrieves the document.
*
* @return
*/
public String getDocument() {
return document;
}
/**
* Retrieves the sentences.
*
* @return the begin indexes of the sentences
* in the document.
*/
public Span[] getSentences() {
return sentences.toArray(new Span[sentences.size()]);
}
@Override
public String toString() {
StringBuilder documentBuilder = new StringBuilder();
for (Span sentSpan : sentences) {
documentBuilder.append(sentSpan.getCoveredText(document));
documentBuilder.append("\n");
}
return documentBuilder.toString();
}
}