Uses of Enum Class
com.google.mu.util.Substring.BoundStyle
-
Uses of Substring.BoundStyle in com.google.mu.util
Modifier 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.Modifier 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.