com.aspose.barcode

Enum GraphicsUnit

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


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

      Enum Constants 
      Enum Constant and Description
      DISPLAY
      Specifies the unit of measure of the display device.
      DOCUMENT
      Specifies the document unit (1/300 inch) as the unit of measure.
      INCH
      Specifies the inch as the unit of measure.
      MILLIMETER
      Specifies the millimeter as the unit of measure.
      PIXEL
      Specifies a device pixel as the unit of measure.
      POINT
      Specifies a printer's point (1/72 inch) as the unit of measure.
      WORLD
      Specifies the world coordinate system unit as the unit of measure.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method and Description
      static java.lang.String getGraphicsUnitName(int graphicsUnit)
      Deprecated. 
      int getValue() 
      static GraphicsUnit valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static GraphicsUnit[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • 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 Detail

      • values

        public static GraphicsUnit[] 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 (GraphicsUnit c : GraphicsUnit.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static GraphicsUnit valueOf(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getValue

        public int getValue()
      • getGraphicsUnitName

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