@Override public String toString() { StringBuilder sb = new StringBuilder("NoteList("); boolean first = true; sb.append("startIndex:"); sb.append(this.startIndex); first = false; if (!first) sb.append(", "); sb.append("totalNotes:"); sb.append(this.totalNotes); first = false; if (!first) sb.append(", "); sb.append("notes:"); if (this.notes == null) { sb.append("null"); } else { sb.append(this.notes); } first = false; if (isSetStoppedWords()) { if (!first) sb.append(", "); sb.append("stoppedWords:"); if (this.stoppedWords == null) { sb.append("null"); } else { sb.append(this.stoppedWords); } first = false; } if (isSetSearchedWords()) { if (!first) sb.append(", "); sb.append("searchedWords:"); if (this.searchedWords == null) { sb.append("null"); } else { sb.append(this.searchedWords); } first = false; } if (isSetUpdateCount()) { if (!first) sb.append(", "); sb.append("updateCount:"); sb.append(this.updateCount); first = false; } sb.append(")"); return sb.toString(); }
@Override public String toString() { StringBuilder sb = new StringBuilder("SavedSearch("); boolean first = true; if (isSetGuid()) { sb.append("guid:"); if (this.guid == null) { sb.append("null"); } else { sb.append(this.guid); } first = false; } if (isSetName()) { if (!first) sb.append(", "); sb.append("name:"); if (this.name == null) { sb.append("null"); } else { sb.append(this.name); } first = false; } if (isSetQuery()) { if (!first) sb.append(", "); sb.append("query:"); if (this.query == null) { sb.append("null"); } else { sb.append(this.query); } first = false; } if (isSetFormat()) { if (!first) sb.append(", "); sb.append("format:"); if (this.format == null) { sb.append("null"); } else { sb.append(this.format); } first = false; } if (isSetUpdateSequenceNum()) { if (!first) sb.append(", "); sb.append("updateSequenceNum:"); sb.append(this.updateSequenceNum); first = false; } if (isSetScope()) { if (!first) sb.append(", "); sb.append("scope:"); if (this.scope == null) { sb.append("null"); } else { sb.append(this.scope); } first = false; } sb.append(")"); return sb.toString(); }
@Override public String toString() { StringBuilder sb = new StringBuilder("NoteAttributes("); boolean first = true; if (isSetSubjectDate()) { sb.append("subjectDate:"); sb.append(this.subjectDate); first = false; } if (isSetLatitude()) { if (!first) sb.append(", "); sb.append("latitude:"); sb.append(this.latitude); first = false; } if (isSetLongitude()) { if (!first) sb.append(", "); sb.append("longitude:"); sb.append(this.longitude); first = false; } if (isSetAltitude()) { if (!first) sb.append(", "); sb.append("altitude:"); sb.append(this.altitude); first = false; } if (isSetAuthor()) { if (!first) sb.append(", "); sb.append("author:"); if (this.author == null) { sb.append("null"); } else { sb.append(this.author); } first = false; } if (isSetSource()) { if (!first) sb.append(", "); sb.append("source:"); if (this.source == null) { sb.append("null"); } else { sb.append(this.source); } first = false; } if (isSetSourceURL()) { if (!first) sb.append(", "); sb.append("sourceURL:"); if (this.sourceURL == null) { sb.append("null"); } else { sb.append(this.sourceURL); } first = false; } if (isSetSourceApplication()) { if (!first) sb.append(", "); sb.append("sourceApplication:"); if (this.sourceApplication == null) { sb.append("null"); } else { sb.append(this.sourceApplication); } first = false; } if (isSetShareDate()) { if (!first) sb.append(", "); sb.append("shareDate:"); sb.append(this.shareDate); first = false; } if (isSetPlaceName()) { if (!first) sb.append(", "); sb.append("placeName:"); if (this.placeName == null) { sb.append("null"); } else { sb.append(this.placeName); } first = false; } if (isSetContentClass()) { if (!first) sb.append(", "); sb.append("contentClass:"); if (this.contentClass == null) { sb.append("null"); } else { sb.append(this.contentClass); } first = false; } if (isSetApplicationData()) { if (!first) sb.append(", "); sb.append("applicationData:"); if (this.applicationData == null) { sb.append("null"); } else { sb.append(this.applicationData); } first = false; } if (isSetLastEditedBy()) { if (!first) sb.append(", "); sb.append("lastEditedBy:"); if (this.lastEditedBy == null) { sb.append("null"); } else { sb.append(this.lastEditedBy); } first = false; } if (isSetClassifications()) { if (!first) sb.append(", "); sb.append("classifications:"); if (this.classifications == null) { sb.append("null"); } else { sb.append(this.classifications); } first = false; } sb.append(")"); return sb.toString(); }