public static enum ZserioTool.Executor extends java.lang.Enum<ZserioTool.Executor>
| Enum Constant and Description |
|---|
ANT_TASK_MAIN
Zserio tool has been executed from Ant task.
|
JAVA_MAIN
Zserio tool has been executed from Java.
|
PYTHON_MAIN
Zserio tool has been executed from Python command line.
|
| Modifier and Type | Method and Description |
|---|---|
static ZserioTool.Executor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ZserioTool.Executor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZserioTool.Executor JAVA_MAIN
public static final ZserioTool.Executor ANT_TASK_MAIN
public static final ZserioTool.Executor PYTHON_MAIN
public static ZserioTool.Executor[] values()
for (ZserioTool.Executor c : ZserioTool.Executor.values()) System.out.println(c);
public static ZserioTool.Executor valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullLast updated 2024-10-29 12:52:38