パッケージ model.type

列挙クラス ICDType

すべての実装されたインタフェース:
Serializable, Comparable<ICDType>, Constable

public enum ICDType extends Enum<ICDType>
Defines the Internal Cooldown (ICD) behaviour for an elemental application.

ICD controls how frequently a character's hits can apply an elemental aura to enemies. The ICDManager uses this type together with ICDTag to track per-group hit counters and timestamps.

  • ネストされたクラスの概要

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

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

    列挙定数
    列挙型定数
    説明
    Every hit applies the element; no cooldown restriction.
    Reserved for custom ICD rules not yet implemented.
    Standard Genshin ICD rule: element is applied on the 1st hit of a group, then suppressed until either 2.5 seconds have elapsed or 3 hits in the same ICD group have been recorded, whichever comes first.
  • メソッドの概要

    修飾子とタイプ
    メソッド
    説明
    static ICDType
    このクラスの列挙型定数を指定した名前で返します。
    static ICDType[]
    この列挙クラスの定数を含む配列を宣言されている順序で 返します。

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

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

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

    getClass, notify, notifyAll, wait, wait, wait
  • 列挙型定数の詳細

    • None

      public static final ICDType None
      Every hit applies the element; no cooldown restriction.
    • Standard

      public static final ICDType Standard
      Standard Genshin ICD rule: element is applied on the 1st hit of a group, then suppressed until either 2.5 seconds have elapsed or 3 hits in the same ICD group have been recorded, whichever comes first.
    • Special

      public static final ICDType Special
      Reserved for custom ICD rules not yet implemented.
  • メソッドの詳細

    • values

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

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