Package com.evopdf

Enum RotationAngle

java.lang.Object
java.lang.Enum<RotationAngle>
com.evopdf.RotationAngle
All Implemented Interfaces:
Serializable, Comparable<RotationAngle>, java.lang.constant.Constable

public enum RotationAngle extends Enum<RotationAngle>
Standard rotation angles for PDF pages
  • Enum Constant Details

    • Rotate_0

      public static final RotationAngle Rotate_0
      0 degrees rotation
    • Rotate_90

      public static final RotationAngle Rotate_90
      90 degrees rotation
    • Rotate_180

      public static final RotationAngle Rotate_180
      180 degrees rotation
    • Rotate_270

      public static final RotationAngle Rotate_270
      270 degrees rotation
  • Method Details

    • values

      public static RotationAngle[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

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

      public int value()
    • getByValue

      public static RotationAngle getByValue(int val) throws Exception
      Throws:
      Exception