Skip to content
Closed
Prev Previous commit
Next Next commit
Update new method access
  • Loading branch information
uros-db committed May 24, 2024
commit f7d22da33947af0e1760d93e409765ce48694a07
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public static boolean lowercaseMatchFrom(
* @param startPos the start position for searching (in the target string)
* @return length of the target substring that ends with the specified prefix in lowercase
*/
public static int lowercaseMatchLengthFrom(
private static int lowercaseMatchLengthFrom(
final UTF8String target,
final UTF8String lowercasePattern,
int startPos) {
Expand All @@ -99,7 +99,7 @@ public static int lowercaseMatchLengthFrom(
* @param startPos the start position for searching (in the target string)
* @return the position of the first occurrence of pattern in target
*/
public static int lowercaseFind(
private static int lowercaseFind(
final UTF8String target,
final UTF8String lowercasePattern,
int startPos) {
Expand Down Expand Up @@ -145,7 +145,7 @@ public static boolean lowercaseMatchUntil(
* @param endPos the end position for searching (in the target string)
* @return length of the target substring that ends with the specified suffix in lowercase
*/
public static int lowercaseMatchLengthUntil(
private static int lowercaseMatchLengthUntil(
final UTF8String target,
final UTF8String lowercasePattern,
int endPos) {
Expand All @@ -170,7 +170,7 @@ public static int lowercaseMatchLengthUntil(
* @param endPos the end position for searching (in the target string)
* @return the position of the last occurrence of pattern in target
*/
public static int lowercaseRFind(
private static int lowercaseRFind(
final UTF8String target,
final UTF8String lowercasePattern,
int endPos) {
Expand Down