列挙 GithubApi

java.lang.Object
java.lang.Enum<GithubApi>
org.thinkit.api.gateway.github.catalog.GithubApi
すべての実装されたインタフェース:
Serializable, Comparable<GithubApi>, Constable, org.thinkit.api.catalog.BiCatalog<GithubApi,​String>

public enum GithubApi
extends Enum<GithubApi>
implements org.thinkit.api.catalog.BiCatalog<GithubApi,​String>
The catalog that manages API of GitHub.
導入されたバージョン:
1.0.0
  • ネストされたクラスの概要

    クラスから継承されたネストされたクラス/インタフェース java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • 列挙型定数の概要

    列挙定数
    列挙型定数 説明
    COMMENTS
    The API that retrieves specific issue comment information
    FOLLOWING_USER
    The API that retrieves specific user's following information
    ISSUES
    The API that retrieves specific issue information
    RECEIVED_EVENTS
    The API that retrieves specific received events information
    REPOSITORY
    The API that retrieves repository information
    USER
    The API that retrieves specific user information
    USER_FOLLOWERS
    The API that retrieves specific user's followers information
    USER_REPOSITORY
    The API that retrieves specific user's repository information
    USER_SUBSCRIPTIONS
    The API that retrieves specific user's subscription information
  • メソッドの概要

    修飾子とタイプ メソッド 説明
    int getCode()
    The code
    String getTag()
    The tag
    static GithubApi valueOf​(String name)
    指定した名前を持つこの型の列挙型定数を返します。
    static GithubApi[] values()
    この列挙型の定数を含む配列を宣言されている順序で 返します。

    クラスから継承されたメソッド java.lang.Enum

    compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    クラスから継承されたメソッド java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait

    インタフェースから継承されたメソッド org.thinkit.api.catalog.BiCatalog

    equalsByCode, equalsByTag, toEnum
  • 列挙型定数の詳細

    • USER

      public static final GithubApi USER
      The API that retrieves specific user information
    • FOLLOWING_USER

      public static final GithubApi FOLLOWING_USER
      The API that retrieves specific user's following information
    • USER_FOLLOWERS

      public static final GithubApi USER_FOLLOWERS
      The API that retrieves specific user's followers information
    • USER_REPOSITORY

      public static final GithubApi USER_REPOSITORY
      The API that retrieves specific user's repository information
    • RECEIVED_EVENTS

      public static final GithubApi RECEIVED_EVENTS
      The API that retrieves specific received events information
    • REPOSITORY

      public static final GithubApi REPOSITORY
      The API that retrieves repository information
    • USER_SUBSCRIPTIONS

      public static final GithubApi USER_SUBSCRIPTIONS
      The API that retrieves specific user's subscription information
    • ISSUES

      public static final GithubApi ISSUES
      The API that retrieves specific issue information
    • COMMENTS

      public static final GithubApi COMMENTS
      The API that retrieves specific issue comment information
  • メソッドの詳細

    • values

      public static GithubApi[] values()
      この列挙型の定数を含む配列を宣言されている順序で 返します。
      戻り値:
      この列挙型の定数を含む、宣言されている順序での配列
    • valueOf

      public static GithubApi valueOf​(String name)
      指定した名前を持つこの型の列挙型定数を返します。 文字列は、この型の列挙型定数を宣言するのに使用した識別子と正確に 一致している必要があります。(余分な空白文字を含めることは できません。)
      パラメータ:
      name - 返される列挙型定数の名前。
      戻り値:
      指定した名前の列挙型定数
      例外:
      IllegalArgumentException - この列挙型に、指定した名前の定数がない場合
      NullPointerException - 引数がnullの場合
    • getCode

      public int getCode()
      The code
      定義:
      getCode インタフェース内 org.thinkit.api.catalog.BiCatalog<GithubApi,​String>
    • getTag

      public String getTag()
      The tag
      定義:
      getTag インタフェース内 org.thinkit.api.catalog.BiCatalog<GithubApi,​String>