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

com.kaltura.client.enums.ControlPanelCommandStatus Maven / Gradle / Ivy

// ===================================================================================================
//                           _  __     _ _
//                          | |/ /__ _| | |_ _  _ _ _ __ _
//                          | ' .
//
// @ignore
// ===================================================================================================
package com.kaltura.client.enums;

/**
 * This class was generated using generate.php
 * against an XML schema provided by Kaltura.
 * 
 * MANUAL CHANGES TO THIS CLASS WILL BE OVERWRITTEN.
 */
public enum ControlPanelCommandStatus implements EnumAsInt {
	PENDING(1),
	HANDLED(2),
	DONE(3),
	FAILED(4);

	private int value;

	ControlPanelCommandStatus(int value) {
		this.value = value;
	}

	@Override
	public int getValue() {
		return this.value;
	}

	public void setValue(int value) {
		this.value = value;
	}

	public static ControlPanelCommandStatus get(Integer value) {
		if(value == null)
		{
			return null;
		}
		
		// goes over ControlPanelCommandStatus defined values and compare the inner value with the given one:
		for(ControlPanelCommandStatus item: values()) {
			if(item.getValue() == value) {
				return item;
			}
		}
		// in case the requested value was not found in the enum values, we return the first item as default.
		return ControlPanelCommandStatus.values().length > 0 ? ControlPanelCommandStatus.values()[0]: null;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy