toOctal method

String toOctal()

Returns the octal representation of this integer.

Implementation

String toOctal() {
  return toRadixString(8);
}