Enum Class GraphicsUnit

java.lang.Object
java.lang.Enum<GraphicsUnit>
com.aspose.barcode.generation.GraphicsUnit
All Implemented Interfaces:
Serializable, Comparable<GraphicsUnit>, Constable

public enum GraphicsUnit extends Enum<GraphicsUnit>
Specifies the unit of measure for the given data.
  • Enum Constant Details

    • WORLD

      public static final GraphicsUnit WORLD
      Specifies the world coordinate system unit as the unit of measure.
    • DISPLAY

      public static final GraphicsUnit DISPLAY
      Specifies the unit of measure of the display device. Typically pixels for video displays, and 1/100 inch for printers.
    • PIXEL

      public static final GraphicsUnit PIXEL
      Specifies a device pixel as the unit of measure.
    • POINT

      public static final GraphicsUnit POINT
      Specifies a printer's point (1/72 inch) as the unit of measure.
    • INCH

      public static final GraphicsUnit INCH
      Specifies the inch as the unit of measure.
    • DOCUMENT

      public static final GraphicsUnit DOCUMENT
      Specifies the document unit (1/300 inch) as the unit of measure.
    • MILLIMETER

      public static final GraphicsUnit MILLIMETER
      Specifies the millimeter as the unit of measure.
  • Method Details

    • values

      public static GraphicsUnit[] 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

      public static GraphicsUnit valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getValue

      public int getValue()
    • getGraphicsUnitName

      @Deprecated public static String getGraphicsUnitName(int graphicsUnit)
      Deprecated.