@Deprecated
@ApiStatus.ScheduledForRemoval
public class StringUtils
extends java.lang.Object
| Constructor and Description |
|---|
StringUtils()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static int |
count(java.lang.String s,
java.lang.String toCount)
Deprecated.
|
static java.lang.String |
cut(java.lang.String s,
char filler,
int length)
Deprecated.
|
static java.lang.String |
cut(java.lang.String s,
int length)
Deprecated.
|
static java.lang.String |
flip(java.lang.String s)
Deprecated.
|
static java.lang.String |
repeat(char c,
int count)
Deprecated.
|
static java.lang.String |
repeat(java.lang.String s,
int count)
Deprecated.
|
static java.lang.String |
uppercaseFirst(java.lang.String s)
Deprecated.
|
@Deprecated @ApiStatus.ScheduledForRemoval public static java.lang.String uppercaseFirst(java.lang.String s)
StringUtils.uppercaseFirst(String).s - The string to uppercase@Deprecated
@ApiStatus.ScheduledForRemoval
public static java.lang.String repeat(char c,
int count)
StringUtils.repeat(char, int).c - The char to repeatcount - The amount of times to repeat@Deprecated
@ApiStatus.ScheduledForRemoval
public static java.lang.String repeat(java.lang.String s,
int count)
StringUtils.repeat(String, int).s - The string to repeatcount - The amount of times to repeat@Deprecated
@ApiStatus.ScheduledForRemoval
public static java.lang.String cut(java.lang.String s,
int length)
StringUtils.cut(String, int).s - The string to cutlength - The length to cut to@Deprecated
@ApiStatus.ScheduledForRemoval
public static java.lang.String cut(java.lang.String s,
char filler,
int length)
StringUtils.cut(String, char, int).s - The string to cutfiller - The filler to add if the string is shorterlength - The length to cut to@Deprecated
@ApiStatus.ScheduledForRemoval
public static int count(java.lang.String s,
java.lang.String toCount)
StringUtils.count(String, String).s - The string to search intoCount - The string to count@Deprecated @ApiStatus.ScheduledForRemoval public static java.lang.String flip(java.lang.String s)
StringUtils.flip(String).s - The string to flip