Enum Class AnimationStyle

java.lang.Object
java.lang.Enum<AnimationStyle>
at.bestsolution.uia.AnimationStyle
All Implemented Interfaces:
INativeEnum, Serializable, Comparable<AnimationStyle>, Constable

public enum AnimationStyle extends Enum<AnimationStyle> implements INativeEnum
Contains values for the AnimationStyle text attribute.
  • Enum Constant Details

    • None

      public static final AnimationStyle None
      None.
    • LasVegasLights

      public static final AnimationStyle LasVegasLights
      The bounding rectangle displays a border of alternating icons of different colors.
    • BlinkingBackground

      public static final AnimationStyle BlinkingBackground
      The font and background alternate between assigned colors and contrasting colors.
    • SparkleText

      public static final AnimationStyle SparkleText
      The background displays flashing, multicolored icons.
    • MarchingBlackAnts

      public static final AnimationStyle MarchingBlackAnts
      The bounding rectangle displays moving black dashes.
    • MarchingRedAnts

      public static final AnimationStyle MarchingRedAnts
      The bounding rectangle displays moving red dashes.
    • Shimmer

      public static final AnimationStyle Shimmer
      The font alternates between solid and blurred.
    • Other

      public static final AnimationStyle Other
      Other.
  • Method Details

    • values

      public static AnimationStyle[] 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 AnimationStyle 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
    • getNativeValue

      public int getNativeValue()
      Specified by:
      getNativeValue in interface INativeEnum
    • getConstantName

      public String getConstantName()
      Specified by:
      getConstantName in interface INativeEnum
    • fromNativeValue

      public static Optional<AnimationStyle> fromNativeValue(int nativeValue)