Enum Portrait.Feature
- java.lang.Object
-
- java.lang.Enum<Portrait.Feature>
-
- ca.cgjennings.apps.arkham.component.Portrait.Feature
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Portrait.Feature>
- Enclosing interface:
- Portrait
public static enum Portrait.Feature extends java.lang.Enum<Portrait.Feature>
Identifies features that this portrait supports. Note that even unsupported features can be used safely. Getting an unsupported feature will return a dummy value, while setting an unsupported feature will have no effect.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PAN
Indicates that the portrait panning can be changed.ROTATE
Indicates that the portrait rotation can be changed.SCALE
Indicates that the portrait scale can be changed.SOURCE
Indicates that the portrait can be changed by setting the source.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Portrait.Feature
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Portrait.Feature[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOURCE
public static final Portrait.Feature SOURCE
Indicates that the portrait can be changed by setting the source.
-
SCALE
public static final Portrait.Feature SCALE
Indicates that the portrait scale can be changed.
-
PAN
public static final Portrait.Feature PAN
Indicates that the portrait panning can be changed.
-
ROTATE
public static final Portrait.Feature ROTATE
Indicates that the portrait rotation can be changed.
-
-
Method Detail
-
values
public static Portrait.Feature[] 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 (Portrait.Feature c : Portrait.Feature.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Portrait.Feature 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
-
-