Package ca.corbett.extras.about
Enum Class AboutInfo.LogoDisplayMode
- All Implemented Interfaces:
Serializable,Comparable<AboutInfo.LogoDisplayMode>,Constable
- Enclosing class:
AboutInfo
Used to determine how to display the application logo image on the AboutPanel.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWill display the logo image as-is centered at the top of the panel.Same as AS_IS but with a panel border around the container.Will stretch the logo image to fit its container panel. -
Method Summary
Modifier and TypeMethodDescriptionstatic AboutInfo.LogoDisplayModeReturns the enum constant of this class with the specified name.static AboutInfo.LogoDisplayMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STRETCH
Will stretch the logo image to fit its container panel. -
AS_IS
Will display the logo image as-is centered at the top of the panel. -
AS_IS_WITH_BORDER
Same as AS_IS but with a panel border around the container.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-