Exemplo n.º 1
0
 @Deprecated
 @operator(
     value = "toChar",
     can_be_const = true,
     category = {IOperatorCategory.STRING})
 @doc(
     deprecated = "Use 'char' instead",
     special_cases = {"convert ACSII integer value to character"},
     examples = {@example(value = "toChar (34)", equals = "'\"'")})
 public static String toChar(final Integer s) {
   return Strings.asChar(s);
 }