| 1 | package cz.vutbr.feec.packets.rsi; |
| 2 | |
| 3 | import org.apache.commons.lang.builder.ToStringBuilder; |
| 4 | |
| 5 | public class GenericBlockRtt extends GenericBlock { |
| 6 | public GenericBlockRtt() { |
| 7 | this.setType(rtt); |
| 8 | } |
| 9 | |
| 10 | /** |
| 11 | * @see java.lang.Object#toString() |
| 12 | */ |
| 13 | public String toString() { |
| 14 | return new ToStringBuilder(this).append("numberOfDistributionBuckets", |
| 15 | this.getNumberOfDistributionBuckets()).append("type", |
| 16 | this.getType()).append("minimumDistributionValue", |
| 17 | this.getMinimumDistributionValue()).append( |
| 18 | "maximumDistributionValue", this.getMaximumDistributionValue()) |
| 19 | .append("length", this.getLength()).append( |
| 20 | "multiplicativeFactor", this.getMultiplicativeFactor()) |
| 21 | .toString(); |
| 22 | } |
| 23 | |
| 24 | } |