Enum PluginInstallerArguments.OperationType
java.lang.Object
java.lang.Enum<PluginInstallerArguments.OperationType>
net.shibboleth.idp.installer.plugin.impl.PluginInstallerArguments.OperationType
- All Implemented Interfaces:
Serializable
,Comparable<PluginInstallerArguments.OperationType>
- Enclosing class:
- PluginInstallerArguments
public static enum PluginInstallerArguments.OperationType
extends Enum<PluginInstallerArguments.OperationType>
Operation enum.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInstall from a local copy.Install from the web.List all installs.List the contents for the plugin.Print the license file to System.out.Uninstall plugin.Unknown.Update a known install. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UPDATE
Update a known install. -
LIST
List all installs. -
INSTALLDIR
Install from a local copy. -
INSTALLREMOTE
Install from the web. -
UNINSTALL
Uninstall plugin. -
OUTPUTLICENSE
Print the license file to System.out. -
LISTCONTENTS
List the contents for the plugin. -
UNKNOWN
Unknown.
-
-
Constructor Details
-
OperationType
private OperationType()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-