getShape static method

String getShape(
  1. String word
)

Implementation

static String getShape(String word) {
  String shape = "";
  for (int i = 0; i < word.length; i++) {
    shape += ShapeUtil.getCharShape(word[i]);
  }
  return shape;
}