public enum Plugin extends Enum<Plugin>
Represents possible plugins.
| Enum Constant and Description |
|---|
None |
PsConverter |
XpsConverter |
| Modifier and Type | Method and Description |
|---|---|
static Plugin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Plugin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Plugin None
public static final Plugin PsConverter
public static final Plugin XpsConverter
public static Plugin[] values()
for (Plugin c : Plugin.values()) System.out.println(c);
public static Plugin 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 nullCopyright © 2025 Aspose. All Rights Reserved.