public enum ExistingPackageBehavior extends Enum<ExistingPackageBehavior>
Enum Constant and Description |
---|
DELETE |
IGNORE |
OVERWRITE |
SKIP |
UNINSTALL |
Modifier and Type | Method and Description |
---|---|
static ExistingPackageBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExistingPackageBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExistingPackageBehavior UNINSTALL
public static final ExistingPackageBehavior DELETE
public static final ExistingPackageBehavior OVERWRITE
public static final ExistingPackageBehavior SKIP
public static final ExistingPackageBehavior IGNORE
public static ExistingPackageBehavior[] values()
for (ExistingPackageBehavior c : ExistingPackageBehavior.values()) System.out.println(c);
public static ExistingPackageBehavior 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 © 2013–2019. All rights reserved.