本文整理了Java中com.google.gdata.data.youtube.YouTubeMediaGroup.getCategories()
方法的一些代码示例,展示了YouTubeMediaGroup.getCategories()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YouTubeMediaGroup.getCategories()
方法的具体详情如下:
包路径:com.google.gdata.data.youtube.YouTubeMediaGroup
类名称:YouTubeMediaGroup
方法名:getCategories
暂无
代码示例来源:origin: com.mulesoft.google/google-api-gdata
/**
* Sets or changes the previously set YouTube category.
*
* @param name the new category name to set.
*/
public void setYouTubeCategory(String name) {
for (Iterator<MediaCategory> iterator = getCategories().iterator(); iterator.hasNext();) {
MediaCategory category = iterator.next();
if (YouTubeNamespace.CATEGORY_SCHEME.equals(category.getScheme())) {
iterator.remove();
}
}
addCategory(new MediaCategory(YouTubeNamespace.CATEGORY_SCHEME, name));
}
代码示例来源:origin: com.google.gdata/gdata-java-client
/**
* Sets or changes the previously set YouTube category.
*
* @param name the new category name to set.
*/
public void setYouTubeCategory(String name) {
for (Iterator<MediaCategory> iterator = getCategories().iterator(); iterator.hasNext();) {
MediaCategory category = iterator.next();
if (YouTubeNamespace.CATEGORY_SCHEME.equals(category.getScheme())) {
iterator.remove();
}
}
addCategory(new MediaCategory(YouTubeNamespace.CATEGORY_SCHEME, name));
}
内容来源于网络,如有侵权,请联系作者删除!