Package com.aspose.barcode.generation
Enum Class GraphicsUnit
- All Implemented Interfaces:
Serializable,Comparable<GraphicsUnit>,Constable
Specifies the unit of measure for the given data.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies the unit of measure of the display device.Specifies the document unit (1/300 inch) as the unit of measure.Specifies the inch as the unit of measure.Specifies the millimeter as the unit of measure.Specifies a device pixel as the unit of measure.Specifies a printer's point (1/72 inch) as the unit of measure.Specifies the world coordinate system unit as the unit of measure. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringgetGraphicsUnitName(int graphicsUnit) Deprecated.intgetValue()static GraphicsUnitReturns the enum constant of this class with the specified name.static GraphicsUnit[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
WORLD
Specifies the world coordinate system unit as the unit of measure. -
DISPLAY
Specifies the unit of measure of the display device. Typically pixels for video displays, and 1/100 inch for printers. -
PIXEL
Specifies a device pixel as the unit of measure. -
POINT
Specifies a printer's point (1/72 inch) as the unit of measure. -
INCH
Specifies the inch as the unit of measure. -
DOCUMENT
Specifies the document unit (1/300 inch) as the unit of measure. -
MILLIMETER
Specifies the millimeter as the unit of measure.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public int getValue() -
getGraphicsUnitName
Deprecated.
-