public static enum PythonBuckConfig.PackageStyle extends Enum<PythonBuckConfig.PackageStyle>
Enum Constant and Description |
---|
INPLACE |
INPLACE_LITE |
STANDALONE |
Modifier and Type | Method and Description |
---|---|
boolean |
isInPlace() |
static PythonBuckConfig.PackageStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PythonBuckConfig.PackageStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PythonBuckConfig.PackageStyle STANDALONE
public static final PythonBuckConfig.PackageStyle INPLACE
public static final PythonBuckConfig.PackageStyle INPLACE_LITE
public static PythonBuckConfig.PackageStyle[] values()
for (PythonBuckConfig.PackageStyle c : PythonBuckConfig.PackageStyle.values()) System.out.println(c);
public static PythonBuckConfig.PackageStyle 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 boolean isInPlace()