public static interface GetSubstring.Builder
| Modifier and Type | Method and Description |
|---|---|
GetSubstring |
build() |
java.lang.Integer |
high() |
GetSubstring.Builder |
high(java.lang.Integer high) |
java.lang.Integer |
low() |
GetSubstring.Builder |
low(java.lang.Integer low) |
GetSubstring.Builder low(java.lang.Integer low)
low - The index to start the substring from, inclusive. Negative numbers count from the end. -1 is the last character of a string.java.lang.Integer low()
GetSubstring.Builder high(java.lang.Integer high)
high - The index to stop the substring at, exclusive. Negative numbers count from the end. -1 is the last character of a string.java.lang.Integer high()
GetSubstring build()