yt4droid
列挙型 OrderByParam

java.lang.Object
  上位を拡張 java.lang.Enum<OrderByParam>
      上位を拡張 yt4droid.OrderByParam
すべての実装されたインタフェース:
java.io.Serializable, java.lang.Comparable<OrderByParam>

public enum OrderByParam
extends java.lang.Enum<OrderByParam>

作成者:
Harioroid

列挙型定数の概要
PUBLISHED
          Entries are returned in reverse chronological order.
RATING
          Entries are ordered from highest rating to lowest rating.
RELEVANCE
          Entries are ordered by their relevance to a search query.
VIEWCOUNT
          Entries are ordered from most views to least views.
 
メソッドの概要
static java.lang.String paramAsString(OrderByParam param)
           
static OrderByParam valueOf(java.lang.String name)
          指定した名前を持つこの型の列挙型定数を返します。
static OrderByParam[] values()
          この列挙型の定数を含む配列を宣言されている順序で返します。
 
クラス java.lang.Enum から継承されたメソッド
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
クラス java.lang.Object から継承されたメソッド
getClass, notify, notifyAll, wait, wait, wait
 

列挙型定数の詳細

RELEVANCE

public static final OrderByParam RELEVANCE
Entries are ordered by their relevance to a search query.
This is the default setting for video search results feeds.

関連項目:
http://code.google.com/intl/en/apis/youtube/2.0/reference.html

PUBLISHED

public static final OrderByParam PUBLISHED
Entries are returned in reverse chronological order.
This is the default value for video feeds other than search results feeds.

関連項目:
http://code.google.com/intl/en/apis/youtube/2.0/reference.html

VIEWCOUNT

public static final OrderByParam VIEWCOUNT
Entries are ordered from most views to least views.

関連項目:
http://code.google.com/intl/en/apis/youtube/2.0/reference.html

RATING

public static final OrderByParam RATING
Entries are ordered from highest rating to lowest rating.

関連項目:
http://code.google.com/intl/en/apis/youtube/2.0/reference.html
メソッドの詳細

values

public static OrderByParam[] values()
この列挙型の定数を含む配列を宣言されている順序で返します。 このメソッドは次のようにして定数を反復するために使用できます:
for (OrderByParam c : OrderByParam.values())
    System.out.println(c);

戻り値:
この列挙型の定数を宣言されている順序で含む配列

valueOf

public static OrderByParam valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。 文字列は、この型の列挙型定数を宣言するのに使用した識別子と厳密に 一致している必要があります (余分な空白文字を含めることはできません)。

パラメータ:
name - 返される列挙型定数の名前
戻り値:
指定された名前を持つ列挙型定数
例外:
java.lang.IllegalArgumentException - 指定された名前を持つ定数を この列挙型が持っていない場合
java.lang.NullPointerException - 引数が null の場合

paramAsString

public static java.lang.String paramAsString(OrderByParam param)