Returns a string with the '?' characters in the parameter replaced with random alphabetic characters. For example, the string "12??34" could be replaced with a string like "12AB34". @param letterString @return
(String letterString)
| 263 | * @return |
| 264 | */ |
| 265 | public String letterify(String letterString) { |
| 266 | return fakeValuesService.letterify(letterString); |
| 267 | } |
| 268 | |
| 269 | /** |
| 270 | * Returns a string with the '?' characters in the parameter replaced with random alphabetic |
no outgoing calls