getServiceClassName static method

String getServiceClassName(
  1. int index
)

Implementation

static String getServiceClassName(int index) {
  assert(
    index >= 13 && index < 24,
    "Index of Service Class Name must be in [13,24)",
  );
  return serviceClassNameList[index - 13];
}