Enum Class MirrorOptions

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

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

    • DONT_FLIP

      public static final MirrorOptions DONT_FLIP
      No mirroring.
    • FLIP_X

      public static final MirrorOptions FLIP_X
      Mirror across x-axis.
    • FLIP_Y

      public static final MirrorOptions FLIP_Y
      Mirror across y-axis.
    • FLIP_XY

      public static final MirrorOptions FLIP_XY
      Mirror across x and y-axis.
  • Method Details

    • values

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