String truncate(int length) { if (this.length <= length) { return this; } else { return this.substring(0, length); } }