public enum RoverAlignment extends java.lang.Enum<RoverAlignment>
Note that "fit" is currently ill-defined and -implemented in rover rendering. It is largely there for future use and since there was bit space for it.
Copyright 2008 Partner Software, Inc.
| Enum Constant and Description |
|---|
BOTTOM_CENTER
Bottom-center, or south, alignment code.
|
BOTTOM_FIT
Bottom-fit alignment code.
|
BOTTOM_LEFT
Bottom-left, or southwest, alignment.
|
BOTTOM_RIGHT
Bottom-right, or southeast, alignment code.
|
CENTER
Alignment centered in both dimensions.
|
CENTER_FIT
Centered in X, fit in Y.
|
CENTER_LEFT
Center-left, or west, alignment code.
|
CENTER_RIGHT
Center-right, or east, alignment code.
|
FIT
Alignment stretched to fit or justified in both dimensions.
|
FIT_CENTER
Fit in X, center in Y.
|
FIT_LEFT
Left-fit alignment code.
|
FIT_RIGHT
Right-fit alignment code.
|
TOP_CENTER
Top-center, or north, alignment code.
|
TOP_FIT
Top-fit alignment code.
|
TOP_LEFT
Top-left, or northwest, alignment code.
|
TOP_RIGHT
Top-right, or northeast, alignment code.
|
| Modifier and Type | Method and Description |
|---|---|
static RoverAlignment |
forCode(byte alignmentCode)
Returns the RoverAlignment with the given alignment code.
|
static RoverAlignment |
forName(java.lang.String name)
Returns the RoverAlignment with the given name.
|
byte |
getCode()
The one-byte code for this alignment.
|
byte |
getHorizontalCode()
The half-byte code corresponding to alignment along the X axis.
|
java.lang.String |
getName()
The name of this alignment.
|
byte |
getVerticalCode()
The half-byte code corresponding to alignment along the Y axis.
|
static java.util.List<java.lang.String> |
listAlignmentNames() |
static RoverAlignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RoverAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoverAlignment CENTER
public static final RoverAlignment FIT
public static final RoverAlignment BOTTOM_LEFT
public static final RoverAlignment CENTER_LEFT
public static final RoverAlignment TOP_LEFT
public static final RoverAlignment BOTTOM_RIGHT
public static final RoverAlignment CENTER_RIGHT
public static final RoverAlignment TOP_RIGHT
public static final RoverAlignment BOTTOM_CENTER
public static final RoverAlignment TOP_CENTER
public static final RoverAlignment BOTTOM_FIT
public static final RoverAlignment TOP_FIT
public static final RoverAlignment FIT_LEFT
public static final RoverAlignment FIT_RIGHT
public static final RoverAlignment CENTER_FIT
public static final RoverAlignment FIT_CENTER
public static RoverAlignment[] values()
for (RoverAlignment c : RoverAlignment.values()) System.out.println(c);
public static RoverAlignment valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static RoverAlignment forName(java.lang.String name)
public static RoverAlignment forCode(byte alignmentCode)
public static java.util.List<java.lang.String> listAlignmentNames()
public java.lang.String getName()
public byte getCode()
public byte getHorizontalCode()
public byte getVerticalCode()