Package jetbrains.buildServer.util
Interface StringMatcherBuilder
-
- All Known Implementing Classes:
AbstractStringMatcherBuilder
,StringMatcherSequencedBuilder
public interface StringMatcherBuilder
- Author:
- Yegor.Yarko Date: 01/10/2018
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringMatcherBuilder
any()
StringMatcher
build()
StringMatcherBuilder
groupEnd()
StringMatcherBuilder
groupStart()
StringMatcherBuilder
text(String text)
-
-
-
Method Detail
-
text
@NotNull StringMatcherBuilder text(@NotNull String text)
-
any
@NotNull StringMatcherBuilder any()
-
groupStart
@NotNull StringMatcherBuilder groupStart() throws IllegalStateException
- Throws:
IllegalStateException
-
groupEnd
@NotNull StringMatcherBuilder groupEnd() throws IllegalStateException
- Throws:
IllegalStateException
-
build
@NotNull StringMatcher build() throws IllegalStateException
- Throws:
IllegalStateException
-
-