Package org.sikuli.script.support
Enum RunTime.RunType
- java.lang.Object
-
- java.lang.Enum<RunTime.RunType>
-
- org.sikuli.script.support.RunTime.RunType
-
- All Implemented Interfaces:
Serializable,Comparable<RunTime.RunType>
- Enclosing class:
- RunTime
public static enum RunTime.RunType extends Enum<RunTime.RunType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RunTime.RunTypevalueOf(String name)Returns the enum constant of this type with the specified name.static RunTime.RunType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JAR
public static final RunTime.RunType JAR
-
CLASSES
public static final RunTime.RunType CLASSES
-
OTHER
public static final RunTime.RunType OTHER
-
-
Method Detail
-
values
public static RunTime.RunType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RunTime.RunType c : RunTime.RunType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RunTime.RunType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-