Enum AnchorPosition
- All Implemented Interfaces:
Serializable
,Comparable<AnchorPosition>
,java.lang.constant.Constable
This is an enumeration of possible sprite anchor position.
- Author:
- Pierre Lando
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAnchor is in the sprite center.Anchor is in the center of the down edge of the sprite.Anchor is in the center of the left edge of the sprite.Anchor is in the lower left sprite corner.Anchor is in the lower right sprite corner.Anchor is in the center of the right edge of the sprite.Anchor is in the center of the upper edge of the sprite.Anchor is in the upper left sprite corner.Anchor is in the upper right sprite corner. -
Method Summary
Modifier and TypeMethodDescriptionstatic AnchorPosition
Returns the enum constant of this type with the specified name.static AnchorPosition[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UPPER_LEFT
Anchor is in the upper left sprite corner. -
UPPER_RIGHT
Anchor is in the upper right sprite corner. -
LOWER_LEFT
Anchor is in the lower left sprite corner. -
LOWER_RIGHT
Anchor is in the lower right sprite corner. -
CENTER
Anchor is in the sprite center. -
RIGHT
Anchor is in the center of the right edge of the sprite. -
LEFT
Anchor is in the center of the left edge of the sprite. -
DOWN
Anchor is in the center of the down edge of the sprite. -
UP
Anchor is in the center of the upper edge of the sprite.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-