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

com.kaltura.client.enums.AssetParamsOutputOrderBy 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 AssetParamsOutputOrderBy implements EnumAsString {
	/** Place holder for future values */;

	private String value;

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

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

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

	public static AssetParamsOutputOrderBy get(String value) {
		return null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy