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

com.kaltura.client.enums.ITunesSyndicationFeedCategories 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

There is a newer version: 19.3.0
Show 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 ITunesSyndicationFeedCategories implements EnumAsString {
	ARTS("Arts"),
	ARTS_DESIGN("Arts/Design"),
	ARTS_FASHION_BEAUTY("Arts/Fashion & Beauty"),
	ARTS_FOOD("Arts/Food"),
	ARTS_LITERATURE("Arts/Literature"),
	ARTS_PERFORMING_ARTS("Arts/Performing Arts"),
	ARTS_VISUAL_ARTS("Arts/Visual Arts"),
	BUSINESS("Business"),
	BUSINESS_BUSINESS_NEWS("Business/Business News"),
	BUSINESS_CAREERS("Business/Careers"),
	BUSINESS_INVESTING("Business/Investing"),
	BUSINESS_MANAGEMENT_MARKETING("Business/Management & Marketing"),
	BUSINESS_SHOPPING("Business/Shopping"),
	COMEDY("Comedy"),
	EDUCATION("Education"),
	EDUCATION_TECHNOLOGY("Education/Education Technology"),
	EDUCATION_HIGHER_EDUCATION("Education/Higher Education"),
	EDUCATION_K_12("Education/K-12"),
	EDUCATION_LANGUAGE_COURSES("Education/Language Courses"),
	EDUCATION_TRAINING("Education/Training"),
	GAMES_HOBBIES("Games & Hobbies"),
	GAMES_HOBBIES_AUTOMOTIVE("Games & Hobbies/Automotive"),
	GAMES_HOBBIES_AVIATION("Games & Hobbies/Aviation"),
	GAMES_HOBBIES_HOBBIES("Games & Hobbies/Hobbies"),
	GAMES_HOBBIES_OTHER_GAMES("Games & Hobbies/Other Games"),
	GAMES_HOBBIES_VIDEO_GAMES("Games & Hobbies/Video Games"),
	GOVERNMENT_ORGANIZATIONS("Government & Organizations"),
	GOVERNMENT_ORGANIZATIONS_LOCAL("Government & Organizations/Local"),
	GOVERNMENT_ORGANIZATIONS_NATIONAL("Government & Organizations/National"),
	GOVERNMENT_ORGANIZATIONS_NON_PROFIT("Government & Organizations/Non-Profit"),
	GOVERNMENT_ORGANIZATIONS_REGIONAL("Government & Organizations/Regional"),
	HEALTH("Health"),
	HEALTH_ALTERNATIVE_HEALTH("Health/Alternative Health"),
	HEALTH_FITNESS_NUTRITION("Health/Fitness & Nutrition"),
	HEALTH_SELF_HELP("Health/Self-Help"),
	HEALTH_SEXUALITY("Health/Sexuality"),
	KIDS_FAMILY("Kids & Family"),
	MUSIC("Music"),
	NEWS_POLITICS("News & Politics"),
	RELIGION_SPIRITUALITY("Religion & Spirituality"),
	RELIGION_SPIRITUALITY_BUDDHISM("Religion & Spirituality/Buddhism"),
	RELIGION_SPIRITUALITY_CHRISTIANITY("Religion & Spirituality/Christianity"),
	RELIGION_SPIRITUALITY_HINDUISM("Religion & Spirituality/Hinduism"),
	RELIGION_SPIRITUALITY_ISLAM("Religion & Spirituality/Islam"),
	RELIGION_SPIRITUALITY_JUDAISM("Religion & Spirituality/Judaism"),
	RELIGION_SPIRITUALITY_OTHER("Religion & Spirituality/Other"),
	RELIGION_SPIRITUALITY_SPIRITUALITY("Religion & Spirituality/Spirituality"),
	SCIENCE_MEDICINE("Science & Medicine"),
	SCIENCE_MEDICINE_MEDICINE("Science & Medicine/Medicine"),
	SCIENCE_MEDICINE_NATURAL_SCIENCES("Science & Medicine/Natural Sciences"),
	SCIENCE_MEDICINE_SOCIAL_SCIENCES("Science & Medicine/Social Sciences"),
	SOCIETY_CULTURE("Society & Culture"),
	SOCIETY_CULTURE_HISTORY("Society & Culture/History"),
	SOCIETY_CULTURE_PERSONAL_JOURNALS("Society & Culture/Personal Journals"),
	SOCIETY_CULTURE_PHILOSOPHY("Society & Culture/Philosophy"),
	SOCIETY_CULTURE_PLACES_TRAVEL("Society & Culture/Places & Travel"),
	SPORTS_RECREATION("Sports & Recreation"),
	SPORTS_RECREATION_AMATEUR("Sports & Recreation/Amateur"),
	SPORTS_RECREATION_COLLEGE_HIGH_SCHOOL("Sports & Recreation/College & High School"),
	SPORTS_RECREATION_OUTDOOR("Sports & Recreation/Outdoor"),
	SPORTS_RECREATION_PROFESSIONAL("Sports & Recreation/Professional"),
	TV_FILM("TV & Film"),
	TECHNOLOGY("Technology"),
	TECHNOLOGY_GADGETS("Technology/Gadgets"),
	TECHNOLOGY_PODCASTING("Technology/Podcasting"),
	TECHNOLOGY_SOFTWARE_HOW_TO("Technology/Software How-To"),
	TECHNOLOGY_TECH_NEWS("Technology/Tech News");

	private String value;

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

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

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

	public static ITunesSyndicationFeedCategories get(String value) {
		if(value == null)
		{
			return null;
		}
		
		// goes over ITunesSyndicationFeedCategories defined values and compare the inner value with the given one:
		for(ITunesSyndicationFeedCategories 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 ITunesSyndicationFeedCategories.values().length > 0 ? ITunesSyndicationFeedCategories.values()[0]: null;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy