Enum Class EngineType
- All Implemented Interfaces:
Serializable
,Comparable<EngineType>
,Constable
Browser engine type.
Enum type specifiying the browser engine which should be used for the
belonging
browser application
.- Since:
- 4.2.416
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionType for the Chrome browser engine.Type for the default browser engine defined by user settings.Deprecated.since 5.1.104, no replacementDeprecated.since 5.2R18, no replacementDeprecated.since 5.2.181102, no replacementDeprecated.since 5.2.1806, no replacement -
Method Summary
Modifier and TypeMethodDescriptionstatic EngineType
Returns the enum constant of this class with the specified name.static EngineType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
Type for the default browser engine defined by user settings.- Since:
- 4.2.416
-
FIREFOX
Deprecated.since 5.1.104, no replacementType for the Firefox browser engine.- Since:
- 4.2.416
-
FIREFOX15
Deprecated.since 5.2R18, no replacementType for the Firefox browser engine (v15).Note: unsupported on Linux 32bit and 64bit
- Since:
- 5.0.39
-
IEXPLORER
Deprecated.since 5.2.1806, no replacementType for the Internet Explorer browser engine.Note: Windows only
- Since:
- 4.2.416
-
CHROME
Type for the Chrome browser engine.- Since:
- 5.1.201
-
IE
Deprecated.since 5.2.181102, no replacementType for a more stable integrated Internet Explorer browser engine using TeamDev JExplorer.Note: Windows only
- Since:
- 5.2.703
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-