Package io.cucumber.gherkin
Interface IGherkinLine
-
- All Known Implementing Classes:
GherkinLine
public interface IGherkinLine
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddetach()StringgetLineText(int indentToRemove)StringgetRestTrimmed(int length)List<GherkinLineSpan>getTableCells()List<GherkinLineSpan>getTags()intindent()booleanisEmpty()booleanstartsWith(String prefix)booleanstartsWithTitleKeyword(String keyword)
-
-
-
Method Detail
-
indent
int indent()
-
detach
void detach()
-
getLineText
String getLineText(int indentToRemove)
-
isEmpty
boolean isEmpty()
-
startsWith
boolean startsWith(String prefix)
-
getRestTrimmed
String getRestTrimmed(int length)
-
getTags
List<GherkinLineSpan> getTags()
-
startsWithTitleKeyword
boolean startsWithTitleKeyword(String keyword)
-
getTableCells
List<GherkinLineSpan> getTableCells()
-
-