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

com.kaltura.client.enums.ThumbAssetOrderBy 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 ThumbAssetOrderBy implements EnumAsString {
	CREATED_AT_ASC("+createdAt"),
	DELETED_AT_ASC("+deletedAt"),
	SIZE_ASC("+size"),
	UPDATED_AT_ASC("+updatedAt"),
	CREATED_AT_DESC("-createdAt"),
	DELETED_AT_DESC("-deletedAt"),
	SIZE_DESC("-size"),
	UPDATED_AT_DESC("-updatedAt");

	private String value;

	ThumbAssetOrderBy(String value) {
		this.value = value;
	}

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy