Skip to main content

ActionName Enum

Lists names of named actions.

Declaration

public enum ActionName extends Enum<ActionName> implements IIntEnum

Members

Name Description
CUSTOM

Executes a custom named action.

FIRST_PAGE

Opens the first page in the document.

LAST_PAGE

Opens the last page in the document.

NEXT_PAGE

Opens the next page in the document.

PREVIOUS_PAGE

Opens the previous page in the document.

PRINT

Prints the document.

fromValue(int value)

Returns the action name that corresponds to the specified integer value.

getName()

Returns the action name.

getValue()

Returns the integer value associated with the action name.

toString()

Returns the action name.

valueOf(String name)

Returns the enum constant with the specified name.

values()

Returns available constants.

Remarks

Named actions (NamedAction) define predefined navigation and document operations in a PDF document. Use the ActionName enum to specify the action executed when a user activates an interactive element, such as a link, bookmark, or form field.

Implements

com.devexpress.java.enums.IIntEnum

Inherited Members

java.lang.Enum.<T>valueOf(java.lang.Class<T>,java.lang.String)
java.lang.Enum.clone()
java.lang.Enum.compareTo(E)
java.lang.Enum.describeConstable()
java.lang.Enum.equals(java.lang.Object)
java.lang.Enum.finalize()
java.lang.Enum.getDeclaringClass()
java.lang.Enum.hashCode()
java.lang.Enum.name()
java.lang.Enum.ordinal()
java.lang.Enum.toString()
java.lang.Object.getClass()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)

Inheritance

Object
java.lang.Enum
ActionName