Enum Class EffectList

java.lang.Object
java.lang.Enum<EffectList>
org.emrick.project.effect.EffectList
All Implemented Interfaces:
Serializable, Comparable<EffectList>, Constable

public enum EffectList extends Enum<EffectList>
  • Enum Constant Details

    • HIDE_GROUPS

      public static final EffectList HIDE_GROUPS
    • SHOW_GROUPS

      public static final EffectList SHOW_GROUPS
    • GENERATED_FADE

      public static final EffectList GENERATED_FADE
    • STATIC_COLOR

      public static final EffectList STATIC_COLOR
    • ALTERNATING_COLOR

      public static final EffectList ALTERNATING_COLOR
    • RIPPLE

      public static final EffectList RIPPLE
    • WAVE

      public static final EffectList WAVE
    • CIRCLE_CHASE

      public static final EffectList CIRCLE_CHASE
    • CHASE

      public static final EffectList CHASE
    • GRID

      public static final EffectList GRID
    • NOISE

      public static final EffectList NOISE
  • Constructor Details

    • EffectList

      private EffectList()
  • Method Details

    • values

      public static EffectList[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EffectList valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null