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

com.languageweaver.sdk.translate.responses.edge.Result Maven / Gradle / Ivy

package com.languageweaver.sdk.translate.responses.edge;

public class Result {

    private long completedSegments;
    private long inputSize;
    private long sourceCharacterCount;
    private long sourceWordCount;
    private long targetCharacterCount;
    private long targetWordCount;
    private long totalSegments;
    private long outputSize;
    private long progress;
    private long wordsPerMinute;

    public long getCompletedSegments() {
        return completedSegments;
    }

    public Result setCompletedSegments(long completedSegments) {
        this.completedSegments = completedSegments;
        return this;
    }

    public long getInputSize() {
        return inputSize;
    }

    public Result setInputSize(long inputSize) {
        this.inputSize = inputSize;
        return this;
    }

    public long getSourceCharacterCount() {
        return sourceCharacterCount;
    }

    public Result setSourceCharacterCount(long sourceCharacterCount) {
        this.sourceCharacterCount = sourceCharacterCount;
        return this;
    }

    public long getSourceWordCount() {
        return sourceWordCount;
    }

    public Result setSourceWordCount(long sourceWordCount) {
        this.sourceWordCount = sourceWordCount;
        return this;
    }

    public long getTargetCharacterCount() {
        return targetCharacterCount;
    }

    public Result setTargetCharacterCount(long targetCharacterCount) {
        this.targetCharacterCount = targetCharacterCount;
        return this;
    }

    public long getTargetWordCount() {
        return targetWordCount;
    }

    public Result setTargetWordCount(long targetWordCount) {
        this.targetWordCount = targetWordCount;
        return this;
    }

    public long getTotalSegments() {
        return totalSegments;
    }

    public Result setTotalSegments(long totalSegments) {
        this.totalSegments = totalSegments;
        return this;
    }

    public long getOutputSize() {
        return outputSize;
    }

    public Result setOutputSize(long outputSize) {
        this.outputSize = outputSize;
        return this;
    }

    public long getProgress() {
        return progress;
    }

    public Result setProgress(long progress) {
        this.progress = progress;
        return this;
    }

    public long getWordsPerMinute() {
        return wordsPerMinute;
    }

    public Result setWordsPerMinute(long wordsPerMinute) {
        this.wordsPerMinute = wordsPerMinute;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy