列挙 ActionStatus

java.lang.Object
java.lang.Enum<ActionStatus>
org.thinkit.bot.twitter.catalog.ActionStatus
すべての実装されたインタフェース:
Serializable, Comparable<ActionStatus>, Constable, org.thinkit.api.catalog.Catalog<ActionStatus>, org.thinkit.api.catalog.CatalogSupport<ActionStatus>, org.thinkit.api.catalog.CodeSupport

public enum ActionStatus
extends Enum<ActionStatus>
implements org.thinkit.api.catalog.Catalog<ActionStatus>
The catalog that manages action status.
導入されたバージョン:
1.0.0
  • ネストされたクラスの概要

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

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

    列挙定数
    列挙型定数 説明
    COMPLETED
    The completed
    INTERRUPTED
    The interrupted
    PREPARING
    The preparing
    RUNNING
    The running
    SKIP
    The skip
  • メソッドの概要

    修飾子とタイプ メソッド 説明
    static ActionStatus valueOf​(String name)
    指定した名前を持つこの型の列挙型定数を返します。
    static ActionStatus[] 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.CatalogSupport

    equalsByCode, toEnum

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

    getCode
  • 列挙型定数の詳細

    • PREPARING

      public static final ActionStatus PREPARING
      The preparing
    • RUNNING

      public static final ActionStatus RUNNING
      The running
    • INTERRUPTED

      public static final ActionStatus INTERRUPTED
      The interrupted
    • COMPLETED

      public static final ActionStatus COMPLETED
      The completed
    • SKIP

      public static final ActionStatus SKIP
      The skip
  • メソッドの詳細

    • values

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

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