public enum PythonStrategy extends Enum<PythonStrategy>
| Enum Constant and Description |
|---|
JYTHON |
PYTHON |
PYTHON_EXECUTOR |
| Modifier and Type | Method and Description |
|---|---|
static PythonStrategy |
getPythonStrategy(String givenStrategy,
PythonStrategy defaultStrategy) |
String |
getStrategyName() |
static PythonStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PythonStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PythonStrategy PYTHON_EXECUTOR
public static final PythonStrategy PYTHON
public static final PythonStrategy JYTHON
public static PythonStrategy[] values()
for (PythonStrategy c : PythonStrategy.values()) System.out.println(c);
public static PythonStrategy 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 static PythonStrategy getPythonStrategy(String givenStrategy, PythonStrategy defaultStrategy)
public String getStrategyName()
Copyright © 2023. All rights reserved.