List of usage examples for org.apache.commons.lang.builder ToStringStyle SHORT_PREFIX_STYLE
ToStringStyle SHORT_PREFIX_STYLE
To view the source code for org.apache.commons.lang.builder ToStringStyle SHORT_PREFIX_STYLE.
Click Source Link
From source file:org.gbif.harvest.portal.synchronise.model.TaxonName.java
/** * @return A short version of the taxon name (Canonical, Author, Rank) * @see java.lang.Object#toString()//from www . ja v a2 s. c o m */ @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).append("canonical", canonical) .append("author", author).append("rank", rank).toString(); }
From source file:org.gbif.portal.model.CommonName.java
/** * @return A full version of the common name for logging *//*from www .jav a2s . c o m*/ public String toFullString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).append("name", name) .append("isoLanguageCode", isoLanguageCode).append("isoCountryCode", isoCountryCode) .append("transliteration", transliteration).toString(); }
From source file:org.gbif.portal.model.CommonName.java
/** * @return A short version of the common name (Name, Language) * @see java.lang.Object#toString()/*w w w. j a v a 2 s . c o m*/ */ @Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).append("name", name) .append("isoLanguageCode", isoLanguageCode).toString(); }
From source file:org.geoserver.gwc.layer.GeoServerTileLayerInfoImpl.java
@Override public String toString() { return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE); // return GeoServerTileLayerInfoLoader.marshalJson(this); }
From source file:org.gridobservatory.greencomputing.hadoop.GcoReportParserReducer.java
private void binaryTimeseriesType(AcquisitionToolAliveBinaryTimeseriesType obj) { log.debug("Binary timeseries type " + ToStringBuilder.reflectionToString(obj, ToStringStyle.SHORT_PREFIX_STYLE)); }
From source file:org.hippoecm.frontend.plugins.yui.javascript.Setting.java
@Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).append("key", javascriptKey).toString(); }
From source file:org.hippoecm.frontend.plugins.yui.JsFunction.java
@Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).append("function", function).toString(); }
From source file:org.hippoecm.frontend.plugins.yui.layout.YuiId.java
@Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).append("id", id) .append("parentId", parentId).toString(); }
From source file:org.jage.solution.VectorSolution.java
@Override public String toString() { return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE) .append("representation", this.getRepresentation()).toString(); }
From source file:org.jasig.cas.services.RegisteredServiceImpl.java
@Override public String toString() { final ToStringBuilder toStringBuilder = new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE); toStringBuilder.append("id", this.id); toStringBuilder.append("name", this.name); toStringBuilder.append("description", this.description); toStringBuilder.append("serviceId", this.serviceId); toStringBuilder.append("attributes", this.allowedAttributes.toArray()); return toStringBuilder.toString(); }