Package com.evopdf

Enum ViewerTextOrder

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

public enum ViewerTextOrder extends Enum<ViewerTextOrder>
Used in ViewerPreferences to specify the predominant reading order for text
  • Enum Constant Details

    • L2R

      public static final ViewerTextOrder L2R
      Left to right
    • R2L

      public static final ViewerTextOrder R2L
      Right to left ( including vertical writing systems such as Chinese, Japanese, and Korean )
  • Method Details

    • values

      public static ViewerTextOrder[] 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 ViewerTextOrder 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()