Package ca.cgjennings.apps.arkham.diy
Enum DIY.HighResolutionMode
- java.lang.Object
-
- java.lang.Enum<DIY.HighResolutionMode>
-
- ca.cgjennings.apps.arkham.diy.DIY.HighResolutionMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DIY.HighResolutionMode>
- Enclosing class:
- DIY
public static enum DIY.HighResolutionMode extends java.lang.Enum<DIY.HighResolutionMode>
The valid modes for high resolution image substitution. Images that are painted usingDIYSheet
by resource key can automatically substitute a higher-resolution image when available.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DIY.HighResolutionMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DIY.HighResolutionMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLE
public static final DIY.HighResolutionMode DISABLE
Never substitute high resolution images. This setting is used mainly for testing.
-
ENABLE
public static final DIY.HighResolutionMode ENABLE
Allow substitution when the component is being drawn at a resolution higher than the template resolution.
-
FORCE
public static final DIY.HighResolutionMode FORCE
Force substitution if possible. This setting is used mainly for testing.
-
-
Method Detail
-
values
public static DIY.HighResolutionMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DIY.HighResolutionMode c : DIY.HighResolutionMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DIY.HighResolutionMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-