Enum Class VisualEffect

java.lang.Object
java.lang.Enum<VisualEffect>
com.independentsoft.office.odf.forms.VisualEffect
All Implemented Interfaces:
Serializable, Comparable<VisualEffect>, Constable

public enum VisualEffect extends Enum<VisualEffect>
Specifies a visual affect to apply to a control.
  • Enum Constant Details

    • FLAT

      public static final VisualEffect FLAT
      Flat visual effect.
    • THREE_D

      public static final VisualEffect THREE_D
      3D visual effect.
    • NONE

      public static final VisualEffect NONE
      None.
  • Method Details

    • values

      public static VisualEffect[] 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 VisualEffect 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