public enum LaunchActionOperation extends Enum<LaunchActionOperation>
Enumerates the operations to perform with document during launch action executing.
Enum Constant and Description |
---|
Open
Open a document.
|
Print
Print a document.
|
Undefined
Undefined state.
|
Modifier and Type | Method and Description |
---|---|
static LaunchActionOperation |
getByValue(int value) |
int |
getValue() |
static LaunchActionOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LaunchActionOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LaunchActionOperation Undefined
Undefined state.
public static final LaunchActionOperation Open
Open a document.
public static final LaunchActionOperation Print
Print a document.
public static LaunchActionOperation[] values()
for (LaunchActionOperation c : LaunchActionOperation.values()) System.out.println(c);
public static LaunchActionOperation 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 int getValue()
public static LaunchActionOperation getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.