Enum Theme.Element
- All Implemented Interfaces:
Serializable,Comparable<Theme.Element>,java.lang.constant.Constable
- Enclosing class:
- Theme
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe output fromscenario.logandscenario.attach.The data table, an optional argument for a step.The data table borders.The data table contents.The doc string, an optional argument for a step.The doc string contents.The doc string delimiter.The doc string media type.The feature line.The feature keyword.The feature name.The location comment.The progress icon.The rule line.The rule keyword.The rule name.The scenario line.The scenario keyword.The scenario name.The status icon.The step line.A matched argument in a step.The step keyword.The step text.The tag line. -
Method Summary
Modifier and TypeMethodDescriptionstatic Theme.ElementReturns the enum constant of this type with the specified name.static Theme.Element[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ATTACHMENT
The output fromscenario.logandscenario.attach. -
DATA_TABLE
The data table, an optional argument for a step. -
DATA_TABLE_BORDER
The data table borders. I.e. the {code |} characters.Styles applied to
DATA_TABLEare also applied to this element. -
DATA_TABLE_CONTENT
The data table contents. I.e. the individual cell.Styles applied to
DATA_TABLEare also applied to this element. -
DOC_STRING
The doc string, an optional argument for a step. -
DOC_STRING_CONTENT
The doc string contents.Styles applied to
DOC_STRINGare also applied to this element. -
DOC_STRING_MEDIA_TYPE
The doc string media type. E.g.application/json.Styles applied to
DOC_STRINGare also applied to this element. -
DOC_STRING_DELIMITER
The doc string delimiter. I.e."""".Styles applied to
DOC_STRINGare also applied to this element. -
FEATURE
The feature line. -
FEATURE_KEYWORD
The feature keyword.Styles applied to
FEATUREare also applied to this element. -
FEATURE_NAME
The feature name.Styles applied to
FEATUREare also applied to this element. -
LOCATION
The location comment. E.g.# samples/undefined/undefined.feature:10.Styles applied to
FEATUREare also applied to this element. -
PROGRESS_ICON
The progress icon.Always used in combination with a
TestStepResultStatus. -
RULE
The rule line. -
RULE_KEYWORD
The rule keyword.Styles applied to
RULEare also applied to this element. -
RULE_NAME
The rule name.Styles applied to
RULEare also applied to this element. -
SCENARIO
The scenario line. -
SCENARIO_KEYWORD
The scenario keyword.Styles applied to
SCENARIOare also applied to this element. -
SCENARIO_NAME
The scenario name.Styles applied to
SCENARIOare also applied to this element. -
STATUS_ICON
The status icon.Always used in combination with a
TestStepResultStatus. -
STEP
The step line.Always used in combination with a
TestStepResultStatus. -
STEP_ARGUMENT
A matched argument in a step.Styles applied to
STEPare also applied to this element. -
STEP_KEYWORD
The step keyword.Styles applied to
STEPare also applied to this element. -
STEP_TEXT
The step text.Styles applied to
STEPare also applied to this element. -
TAG
The tag line.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-