Enum Class PathPaintOpFlags

java.lang.Object
java.lang.Enum<PathPaintOpFlags>
com.datalogics.PDFL.PathPaintOpFlags
All Implemented Interfaces:
Serializable, Comparable<PathPaintOpFlags>, Constable

public enum PathPaintOpFlags extends Enum<PathPaintOpFlags>
  • Enum Constant Details

    • NEITHER

      public static final PathPaintOpFlags NEITHER
      The path is neither stroked or filled.
    • STROKE

      public static final PathPaintOpFlags STROKE
      Stroke the path, as with the S (stroke) operator.
    • FILL

      public static final PathPaintOpFlags FILL
      Fill the path, using the nonzero winding rule to determine the region to fill, as with the f (fill) operator.
    • EO_FILL

      public static final PathPaintOpFlags EO_FILL
      Fill the path, using the even/odd rule to determine the region to fill, as with the f* (eofill) operator.
  • Method Details

    • values

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