com.jdroid.android.googleplay.publisher.TrackReleaseStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdroid-java-googleplay-publisher Show documentation
Show all versions of jdroid-java-googleplay-publisher Show documentation
Java Connector for Google Play API
package com.jdroid.android.googleplay.publisher;
public enum TrackReleaseStatus {
COMPLETED("completed"),
DRAFT("draft"),
HALTED("halted"),
IN_PROGRESS("inProgress");
private String key;
TrackReleaseStatus(String key) {
this.key = key;
}
public String getKey() {
return key;
}
public static TrackReleaseStatus findByKey(String key) {
for (TrackReleaseStatus each : TrackReleaseStatus.values()) {
if (each.getKey().equals(key)) {
return each;
}
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy