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

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

Go to download

KalturaClient is a library of Java classes that can be used to interact with the Kaltura REST API. More information about the REST API can be found at http://corp.kaltura.com/Products/Kaltura-API Many of the Java classes in this library are auto-generated from a schema that defines the objects that are used to interect with the API. The current schema can be found at http://www.kaltura.com/api_v3/api_schema.php

The newest version!
// ===================================================================================================
//                           _  __     _ _
//                          | |/ /__ _| | |_ _  _ _ _ __ _
//                          | ' .
//
// @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 KalturaExternalMediaEntryMatchAttribute implements KalturaEnumAsString {
    ADMIN_TAGS ("adminTags"),
    CATEGORIES_IDS ("categoriesIds"),
    CREATOR_ID ("creatorId"),
    DESCRIPTION ("description"),
    DURATION_TYPE ("durationType"),
    FLAVOR_PARAMS_IDS ("flavorParamsIds"),
    GROUP_ID ("groupId"),
    ID ("id"),
    NAME ("name"),
    REFERENCE_ID ("referenceId"),
    REPLACED_ENTRY_ID ("replacedEntryId"),
    REPLACING_ENTRY_ID ("replacingEntryId"),
    SEARCH_TEXT ("searchText"),
    TAGS ("tags"),
    USER_ID ("userId");

    public String hashCode;

    KalturaExternalMediaEntryMatchAttribute(String hashCode) {
        this.hashCode = hashCode;
    }

    public String getHashCode() {
        return this.hashCode;
    }

    public void setHashCode(String hashCode) {
        this.hashCode = hashCode;
    }

    public static KalturaExternalMediaEntryMatchAttribute get(String hashCode) {
        if (hashCode.equals("adminTags"))
        {
           return ADMIN_TAGS;
        }
        else 
        if (hashCode.equals("categoriesIds"))
        {
           return CATEGORIES_IDS;
        }
        else 
        if (hashCode.equals("creatorId"))
        {
           return CREATOR_ID;
        }
        else 
        if (hashCode.equals("description"))
        {
           return DESCRIPTION;
        }
        else 
        if (hashCode.equals("durationType"))
        {
           return DURATION_TYPE;
        }
        else 
        if (hashCode.equals("flavorParamsIds"))
        {
           return FLAVOR_PARAMS_IDS;
        }
        else 
        if (hashCode.equals("groupId"))
        {
           return GROUP_ID;
        }
        else 
        if (hashCode.equals("id"))
        {
           return ID;
        }
        else 
        if (hashCode.equals("name"))
        {
           return NAME;
        }
        else 
        if (hashCode.equals("referenceId"))
        {
           return REFERENCE_ID;
        }
        else 
        if (hashCode.equals("replacedEntryId"))
        {
           return REPLACED_ENTRY_ID;
        }
        else 
        if (hashCode.equals("replacingEntryId"))
        {
           return REPLACING_ENTRY_ID;
        }
        else 
        if (hashCode.equals("searchText"))
        {
           return SEARCH_TEXT;
        }
        else 
        if (hashCode.equals("tags"))
        {
           return TAGS;
        }
        else 
        if (hashCode.equals("userId"))
        {
           return USER_ID;
        }
        else 
        {
           return ADMIN_TAGS;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy