Package playn.scene
Enum Layer.Origin
- All Implemented Interfaces:
Serializable,Comparable<Layer.Origin>,java.lang.constant.Constable
- Enclosing class:
- Layer
public static enum Layer.Origin extends Enum<Layer.Origin>
Used to configure the origin of a layer based on its width/height.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants Enum Constant Description BCOrigin is at bottom center.CENTEROrigin is at layer's center.FIXEDOrigin is manually specified viaLayer.setOrigin(float,float).LCOrigin is at left center.LLOrigin is in lower left.LROrigin is in lower right.RCOrigin is at right center.TCOrigin is at top center.ULOrigin is in upper left.UROrigin is in upper right. -
Method Summary
Modifier and Type Method Description abstract floatox(float width)abstract floatoy(float height)static Layer.OriginvalueOf(String name)Returns the enum constant of this type with the specified name.static Layer.Origin[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
FIXED
Origin is manually specified viaLayer.setOrigin(float,float). -
CENTER
Origin is at layer's center. -
UL
Origin is in upper left. -
UR
Origin is in upper right. -
LL
Origin is in lower left. -
LR
Origin is in lower right. -
TC
Origin is at top center. -
BC
Origin is at bottom center. -
LC
Origin is at left center. -
RC
Origin is at right center.
-
-
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
-
ox
public abstract float ox(float width) -
oy
public abstract float oy(float height)
-