![JAR search and dependency download from the Maven repository](/logo.png)
com.lionbridge.content.sdk.definitions.TranslatedFileStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liox-content-sdk-java Show documentation
Show all versions of liox-content-sdk-java Show documentation
Client for Lionbridge Ondemand API
package com.lionbridge.content.sdk.definitions;
public enum TranslatedFileStatus {
None(0), Started(1), Complete(2), Authorized(3), Referenced(4), Analyzed(5), Translated(6), InTranslation(7), Accepted(8);
private int value;
TranslatedFileStatus(final int value) {
this.setValue(value);
}
public int getValue() {
return value;
}
public void setValue(int value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy