public final enum

PageBinding

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pspdfkit.document.PageBinding

Class Overview

Enum of the possible page bindings deciding how the document will be displayed.

Summary

Enum Values
PageBinding  LEFT_EDGE  This document should be displayed LTR. 
PageBinding  RIGHT_EDGE  This document should be displayed RTL. 
PageBinding  UNKNOWN  This document has no page binding set, defaults to LTR. 
Public Methods
static PageBinding valueOf(String name)
final static PageBinding[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final PageBinding LEFT_EDGE

This document should be displayed LTR. This means that the page with index 0 will be on the left and the last page on the right.

public static final PageBinding RIGHT_EDGE

This document should be displayed RTL. This means that the page with index 0 will be on the right and the last page on the left.

public static final PageBinding UNKNOWN

This document has no page binding set, defaults to LTR.

Public Methods

public static PageBinding valueOf (String name)

public static final PageBinding[] values ()