Uses of Enum Class
com.google.mu.util.Substring.BoundStyle
Packages that use Substring.BoundStyle
-
Uses of Substring.BoundStyle in com.google.mu.util
Subclasses with type arguments of type Substring.BoundStyle in com.google.mu.utilModifier and TypeClassDescriptionstatic enum
The style of the bounds of a match.Methods in com.google.mu.util that return Substring.BoundStyleModifier and TypeMethodDescriptionstatic Substring.BoundStyle
Returns the enum constant of this class with the specified name.static Substring.BoundStyle[]
Substring.BoundStyle.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.google.mu.util with parameters of type Substring.BoundStyleModifier and TypeMethodDescriptionstatic Substring.Pattern
Substring.between
(char open, Substring.BoundStyle openBound, char close, Substring.BoundStyle closeBound) Similar toSubstring.between(char, char)
but allows to use alternative bound styles to include or exclude the delimiters at both ends.static Substring.Pattern
Substring.between
(Substring.Pattern open, Substring.BoundStyle openBound, Substring.Pattern close, Substring.BoundStyle closeBound) Similar toSubstring.between(Pattern, Pattern)
but allows to use alternative bound styles to include or exclude the delimiters at both ends.static Substring.Pattern
Substring.between
(String open, Substring.BoundStyle openBound, String close, Substring.BoundStyle closeBound) Similar toSubstring.between(String, String)
but allows to use alternative bound styles to include or exclude the delimiters at both ends.final Substring.Pattern
Substring.Pattern.immediatelyBetween
(String lookbehind, Substring.BoundStyle lookbehindBound, String lookahead, Substring.BoundStyle lookaheadBound) Similar toSubstring.Pattern.immediatelyBetween(String, String)
, but allows including thelookbehind
and/orlookahead
inclusive in the match.