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

com.jdroid.android.googleplay.publisher.TrackReleaseStatus Maven / Gradle / Ivy

There is a newer version: 3.9.1
Show newest version
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