public enum CommandArgsEnum extends Enum<CommandArgsEnum>
Enum Constant and Description |
---|
CONSOLE
Prints all errormessages to stdout
|
DEBUG
set debug level
|
HELP
Shows the help
|
INTERACTIVE
Starts an interactive session
|
LOAD
Preloads script in IDE
|
LOGFILE
outputfile for Sikuli logging messages
|
RUN
Runs the script
|
SERVER
run as server
|
SPLASH
Prints all errormessages to stdout
|
TEST
Runs the script as testcase
|
USERLOGFILE
outputfile for user logging messages
|
Modifier and Type | Method and Description |
---|---|
String |
argname()
Returns the argname
|
String |
description()
Description for the param
|
String |
longname()
Returns the long name
|
String |
shortname()
Returns the short name
|
static CommandArgsEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommandArgsEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandArgsEnum HELP
public static final CommandArgsEnum DEBUG
public static final CommandArgsEnum LOGFILE
public static final CommandArgsEnum USERLOGFILE
public static final CommandArgsEnum INTERACTIVE
public static final CommandArgsEnum RUN
public static final CommandArgsEnum TEST
public static final CommandArgsEnum CONSOLE
public static final CommandArgsEnum SPLASH
public static final CommandArgsEnum LOAD
public static final CommandArgsEnum SERVER
public static CommandArgsEnum[] values()
for (CommandArgsEnum c : CommandArgsEnum.values()) System.out.println(c);
public static CommandArgsEnum 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 String longname()
public String shortname()
public String argname()
public String description()
Copyright © 2017. All rights reserved.