パッケージ model.type

列挙クラス ActionType

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

public enum ActionType extends Enum<ActionType>
Classifies the type of action performed by a character during the simulation.

Used by AttackAction and CSV multiplier files to identify which talent category a given hit belongs to, so that the correct DMG Bonus% modifiers (e.g. StatType.NORMAL_ATTACK_DMG_BONUS, StatType.BURST_DMG_BONUS) and ICD rules are applied.

The values match the AbilityType header values in the character CSV files (stored as uppercase strings).

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

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

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

    列挙定数
    列挙型定数
    説明
    Elemental Burst (Q key).
    Charged Attack (stamina-consuming follow-up or hold attack).
    Dash / sprint action; does not deal damage.
    Normal Attack (left-click chain).
    Catch-all for actions that do not fit the above categories.
    Plunge Attack (falling aerial attack).
    Elemental Skill (E key).
  • メソッドの概要

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

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

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

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

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

    • NORMAL

      public static final ActionType NORMAL
      Normal Attack (left-click chain).
    • CHARGE

      public static final ActionType CHARGE
      Charged Attack (stamina-consuming follow-up or hold attack).
    • PLUNGE

      public static final ActionType PLUNGE
      Plunge Attack (falling aerial attack).
    • SKILL

      public static final ActionType SKILL
      Elemental Skill (E key).
    • BURST

      public static final ActionType BURST
      Elemental Burst (Q key).
    • DASH

      public static final ActionType DASH
      Dash / sprint action; does not deal damage.
    • OTHER

      public static final ActionType OTHER
      Catch-all for actions that do not fit the above categories.
  • メソッドの詳細

    • values

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

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