protected static enum BasicSupport.InstallType extends Enum<BasicSupport.InstallType>
| Enum Constant and Description |
|---|
ALREADY_EXISTS |
FROM_ARCHIVE |
FROM_FILE |
| Modifier and Type | Method and Description |
|---|---|
static BasicSupport.InstallType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BasicSupport.InstallType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicSupport.InstallType FROM_FILE
public static final BasicSupport.InstallType ALREADY_EXISTS
public static final BasicSupport.InstallType FROM_ARCHIVE
public static BasicSupport.InstallType[] values()
for (BasicSupport.InstallType c : BasicSupport.InstallType.values()) System.out.println(c);
public static BasicSupport.InstallType 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 © 2021 the original author or authors.