public enum PageSeekOrigin extends Enum<PageSeekOrigin>
Provides the fields that represent reference points in a document for seeking.
Learn more
| Enum Constant and Description |
|---|
Begin
Specifies the beginning of a document.
|
End
Specifies the end of a document.
|
| Modifier and Type | Method and Description |
|---|---|
static PageSeekOrigin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageSeekOrigin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageSeekOrigin Begin
Specifies the beginning of a document.
public static final PageSeekOrigin End
Specifies the end of a document.
public static PageSeekOrigin valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static PageSeekOrigin[] values()
for (PageSeekOrigin c : PageSeekOrigin.values()) System.out.println(c);
Copyright © 2025. All rights reserved.