A contiguous range of characters, optionally negated.
Instances are immutable.
#ThreadSafe#
545546547548549550551552553554555
* @see java.lang.Object#toString() */ @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE) // .append("columnNumber", this.columnNumber) //$NON-NLS-1$ .append("title", this.title) //$NON-NLS-1$ .append("beanPropertyName", this.beanPropertyName) //$NON-NLS-1$ .toString(); }
589590591592593594595596597598599
* @see java.lang.Object#toString() */ @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE) // .append("rowListFull", this.rowListFull) //$NON-NLS-1$ .append("rowListPage", this.rowListPage) //$NON-NLS-1$ .append("properties", this.properties) //$NON-NLS-1$ .append("empty", this.isEmpty()) //$NON-NLS-1$ .append("encoding", this.encoding) //$NON-NLS-1$
134135136137138139140141
* @return String represantation of the cell */ @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE) // .append("staticValue", this.staticValue).toString(); //$NON-NLS-1$ }
874875876877878879880881882883884
* @see java.lang.Object#toString() */ @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE) // .append("bodyContent", this.bodyContent) //$NON-NLS-1$ .append("group", this.group) //$NON-NLS-1$ .append("maxLength", this.maxLength) //$NON-NLS-1$ .append("decorator", this.decorator) //$NON-NLS-1$ .append("href", this.href) //$NON-NLS-1$
231232233234235236237238239240
* @see java.lang.Object#toString() */ @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE) // .append("paginatedList", this.paginatedList) //$NON-NLS-1$ .append("properties", this.properties) //$NON-NLS-1$ .toString(); }
384385386387388389390391392393394
* @see java.lang.Object#toString() */ @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE) // .append("fullList", this.fullList) //$NON-NLS-1$ .append("fullListSize", this.fullListSize) //$NON-NLS-1$ .append("pageSize", this.pageSize) //$NON-NLS-1$ .append("pageCount", this.pageCount) //$NON-NLS-1$ .append("properties", this.properties) //$NON-NLS-1$
76777879808182838485
* @see java.lang.Object#toString() */ @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE) // .append("selected", this.selected) //$NON-NLS-1$ .append("number", this.number) //$NON-NLS-1$ .toString(); }
301302303304305306307308309310311
* @see java.lang.Object#toString() */ @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE) // .append("firstPage", this.firstPage) //$NON-NLS-1$ .append("lastPage", this.lastPage) //$NON-NLS-1$ .append("currentPage", this.currentPage) //$NON-NLS-1$ .append("nextPage", this.nextPage) //$NON-NLS-1$ .append("previousPage", this.previousPage) //$NON-NLS-1$
211212213214215216217218219220
* @see java.lang.Object#toString() */ @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE) // .append("rowNumber", this.rowNumber) //$NON-NLS-1$ .append("rowObject", this.rowObject) //$NON-NLS-1$ .toString(); }
421422423424425426427428429430431
* @see java.lang.Object#toString() */ @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SIMPLE_STYLE) .append("tagClass", this.tagClass) .append("attributeName", this.attributeName) .append("attributeType", this.attributeType) .toString(); }