Enum Class AboutInfo.LogoDisplayMode

java.lang.Object
java.lang.Enum<AboutInfo.LogoDisplayMode>
ca.corbett.extras.about.AboutInfo.LogoDisplayMode
All Implemented Interfaces:
Serializable, Comparable<AboutInfo.LogoDisplayMode>, Constable
Enclosing class:
AboutInfo

public static enum AboutInfo.LogoDisplayMode extends Enum<AboutInfo.LogoDisplayMode>
Used to determine how to display the application logo image on the AboutPanel.
  • Enum Constant Details

    • STRETCH

      public static final AboutInfo.LogoDisplayMode STRETCH
      Will stretch the logo image to fit its container panel.
    • AS_IS

      public static final AboutInfo.LogoDisplayMode AS_IS
      Will display the logo image as-is centered at the top of the panel.
    • AS_IS_WITH_BORDER

      public static final AboutInfo.LogoDisplayMode AS_IS_WITH_BORDER
      Same as AS_IS but with a panel border around the container.
  • Method Details

    • values

      public static AboutInfo.LogoDisplayMode[] 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 AboutInfo.LogoDisplayMode 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