Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 16 package org.apache.commons.lang.builder; 17 18 33 public class StandardToStringStyle extends ToStringStyle { 34 35 38 public StandardToStringStyle() { 39 super(); 40 } 41 42 44 49 public boolean isUseClassName() { 50 return super.isUseClassName(); 51 } 52 53 58 public void setUseClassName(boolean useClassName) { 59 super.setUseClassName(useClassName); 60 } 61 62 64 70 public boolean isUseShortClassName() { 71 return super.isUseShortClassName(); 72 } 73 74 81 public boolean isShortClassName() { 82 return super.isUseShortClassName(); 83 } 84 85 91 public void setUseShortClassName(boolean useShortClassName) { 92 super.setUseShortClassName(useShortClassName); 93 } 94 95 102 public void setShortClassName(boolean shortClassName) { 103 super.setUseShortClassName(shortClassName); 104 } 105 106 108 112 public boolean isUseIdentityHashCode() { 113 return super.isUseIdentityHashCode(); 114 } 115 116 121 public void setUseIdentityHashCode(boolean useIdentityHashCode) { 122 super.setUseIdentityHashCode(useIdentityHashCode); 123 } 124 125 127 132 public boolean isUseFieldNames() { 133 return super.isUseFieldNames(); 134 } 135 136 141 public void setUseFieldNames(boolean useFieldNames) { 142 super.setUseFieldNames(useFieldNames); 143 } 144 145 147 153 public boolean isDefaultFullDetail() { 154 return super.isDefaultFullDetail(); 155 } 156 157 163 public void setDefaultFullDetail(boolean defaultFullDetail) { 164 super.setDefaultFullDetail(defaultFullDetail); 165 } 166 167 169 174 public boolean isArrayContentDetail() { 175 return super.isArrayContentDetail(); 176 } 177 178 183 public void setArrayContentDetail(boolean arrayContentDetail) { 184 super.setArrayContentDetail(arrayContentDetail); 185 } 186 187 189 194 public String getArrayStart() { 195 return super.getArrayStart(); 196 } 197 198 206 public void setArrayStart(String arrayStart) { 207 super.setArrayStart(arrayStart); 208 } 209 210 212 217 public String getArrayEnd() { 218 return super.getArrayEnd(); 219 } 220 221 229 public void setArrayEnd(String arrayEnd) { 230 super.setArrayEnd(arrayEnd); 231 } 232 233 235 240 public String getArraySeparator() { 241 return super.getArraySeparator(); 242 } 243 244 252 public void setArraySeparator(String arraySeparator) { 253 super.setArraySeparator(arraySeparator); 254 } 255 256 258 263 public String getContentStart() { 264 return super.getContentStart(); 265 } 266 267 275 public void setContentStart(String contentStart) { 276 super.setContentStart(contentStart); 277 } 278 279 281 286 public String getContentEnd() { 287 return super.getContentEnd(); 288 } 289 290 298 public void setContentEnd(String contentEnd) { 299 super.setContentEnd(contentEnd); 300 } 301 302 304 309 public String getFieldNameValueSeparator() { 310 return super.getFieldNameValueSeparator(); 311 } 312 313 321 public void setFieldNameValueSeparator(String fieldNameValueSeparator) { 322 super.setFieldNameValueSeparator(fieldNameValueSeparator); 323 } 324 325 327 332 public String getFieldSeparator() { 333 return super.getFieldSeparator(); 334 } 335 336 344 public void setFieldSeparator(String fieldSeparator) { 345 super.setFieldSeparator(fieldSeparator); 346 } 347 348 350 357 public boolean isFieldSeparatorAtStart() { 358 return super.isFieldSeparatorAtStart(); 359 } 360 361 368 public void setFieldSeparatorAtStart(boolean fieldSeparatorAtStart) { 369 super.setFieldSeparatorAtStart(fieldSeparatorAtStart); 370 } 371 372 374 381 public boolean isFieldSeparatorAtEnd() { 382 return super.isFieldSeparatorAtEnd(); 383 } 384 385 392 public void setFieldSeparatorAtEnd(boolean fieldSeparatorAtEnd) { 393 super.setFieldSeparatorAtEnd(fieldSeparatorAtEnd); 394 } 395 396 398 403 public String getNullText() { 404 return super.getNullText(); 405 } 406 407 415 public void setNullText(String nullText) { 416 super.setNullText(nullText); 417 } 418 419 421 429 public String getSizeStartText() { 430 return super.getSizeStartText(); 431 } 432 433 444 public void setSizeStartText(String sizeStartText) { 445 super.setSizeStartText(sizeStartText); 446 } 447 448 450 458 public String getSizeEndText() { 459 return super.getSizeEndText(); 460 } 461 462 473 public void setSizeEndText(String sizeEndText) { 474 super.setSizeEndText(sizeEndText); 475 } 476 477 479 487 public String getSummaryObjectStartText() { 488 return super.getSummaryObjectStartText(); 489 } 490 491 502 public void setSummaryObjectStartText(String summaryObjectStartText) { 503 super.setSummaryObjectStartText(summaryObjectStartText); 504 } 505 506 508 516 public String getSummaryObjectEndText() { 517 return super.getSummaryObjectEndText(); 518 } 519 520 531 public void setSummaryObjectEndText(String summaryObjectEndText) { 532 super.setSummaryObjectEndText(summaryObjectEndText); 533 } 534 535 537 } 538
| Popular Tags
|