Package org.orbisgis.commons.printer
Enum ICustomPrinter.CellPosition
- java.lang.Object
-
- java.lang.Enum<ICustomPrinter.CellPosition>
-
- org.orbisgis.commons.printer.ICustomPrinter.CellPosition
-
- All Implemented Interfaces:
Serializable,Comparable<ICustomPrinter.CellPosition>
- Enclosing interface:
- ICustomPrinter
public static enum ICustomPrinter.CellPosition extends Enum<ICustomPrinter.CellPosition>
Cell positions.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ICustomPrinter.CellPositionvalueOf(String name)Returns the enum constant of this type with the specified name.static ICustomPrinter.CellPosition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CENTER
public static final ICustomPrinter.CellPosition CENTER
-
RIGHT
public static final ICustomPrinter.CellPosition RIGHT
-
LEFT
public static final ICustomPrinter.CellPosition LEFT
-
-
Method Detail
-
values
public static ICustomPrinter.CellPosition[] 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 (ICustomPrinter.CellPosition c : ICustomPrinter.CellPosition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ICustomPrinter.CellPosition valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-