1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
|
Description: Preserves the Objects.toStringHelper() methods which were removed in Guava 21.
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/guava/src/com/google/common/base/Objects.java
+++ b/guava/src/com/google/common/base/Objects.java
@@ -14,7 +14,10 @@
package com.google.common.base;
+import static com.google.common.base.Preconditions.checkNotNull;
+
import com.google.common.annotations.GwtCompatible;
+import com.google.errorprone.annotations.CanIgnoreReturnValue;
import java.util.Arrays;
import javax.annotation.CheckForNull;
import org.checkerframework.checker.nullness.qual.Nullable;
@@ -99,4 +102,333 @@
public static <T> T firstNonNull(@Nullable T first, @Nullable T second) {
return MoreObjects.firstNonNull(first, second);
}
+
+ /**
+ * Creates an instance of {@link ToStringHelper}.
+ *
+ * <p>This is helpful for implementing {@link Object#toString()}. Specification by example:
+ *
+ * <pre> {@code
+ * // Returns "ClassName{}"
+ * Objects.toStringHelper(this)
+ * .toString();
+ *
+ * // Returns "ClassName{x=1}"
+ * Objects.toStringHelper(this)
+ * .add("x", 1)
+ * .toString();
+ *
+ * // Returns "MyObject{x=1}"
+ * Objects.toStringHelper("MyObject")
+ * .add("x", 1)
+ * .toString();
+ *
+ * // Returns "ClassName{x=1, y=foo}"
+ * Objects.toStringHelper(this)
+ * .add("x", 1)
+ * .add("y", "foo")
+ * .toString();
+ *
+ * // Returns "ClassName{x=1}"
+ * Objects.toStringHelper(this)
+ * .omitNullValues()
+ * .add("x", 1)
+ * .add("y", null)
+ * .toString();
+ * }}</pre>
+ *
+ * <p>Note that in GWT, class names are often obfuscated.
+ *
+ * @param self the object to generate the string for (typically {@code this}), used only for its
+ * class name
+ * @since 2.0
+ * @deprecated Use {@link MoreObjects#toStringHelper(Object)} instead. This method is scheduled
+ * for removal in Guava 21.0.
+ */
+ @Deprecated
+ public static ToStringHelper toStringHelper(Object self) {
+ return new ToStringHelper(self.getClass().getSimpleName());
+ }
+
+ /**
+ * Creates an instance of {@link ToStringHelper} in the same manner as
+ * {@link Objects#toStringHelper(Object)}, but using the name of {@code clazz} instead of using an
+ * instance's {@link Object#getClass()}.
+ *
+ * <p>Note that in GWT, class names are often obfuscated.
+ *
+ * @param clazz the {@link Class} of the instance
+ * @since 7.0 (source-compatible since 2.0)
+ * @deprecated Use {@link MoreObjects#toStringHelper(Class)} instead. This method is scheduled for
+ * removal in Guava 21.0.
+ */
+ @Deprecated
+ public static ToStringHelper toStringHelper(Class<?> clazz) {
+ return new ToStringHelper(clazz.getSimpleName());
+ }
+
+ /**
+ * Creates an instance of {@link ToStringHelper} in the same manner as
+ * {@link Objects#toStringHelper(Object)}, but using {@code className} instead of using an
+ * instance's {@link Object#getClass()}.
+ *
+ * @param className the name of the instance type
+ * @since 7.0 (source-compatible since 2.0)
+ * @deprecated Use {@link MoreObjects#toStringHelper(String)} instead. This method is scheduled
+ * for removal in Guava 21.0.
+ */
+ @Deprecated
+ public static ToStringHelper toStringHelper(String className) {
+ return new ToStringHelper(className);
+ }
+
+ /**
+ * Support class for {@link Objects#toStringHelper}.
+ *
+ * @author Jason Lee
+ * @since 2.0
+ * @deprecated Use {@link MoreObjects.ToStringHelper} instead. This class is scheduled for removal
+ * in Guava 21.0.
+ */
+ @Deprecated
+ public static final class ToStringHelper {
+ private final String className;
+ private final ValueHolder holderHead = new ValueHolder();
+ private ValueHolder holderTail = holderHead;
+ private boolean omitNullValues = false;
+
+ /**
+ * Use {@link Objects#toStringHelper(Object)} to create an instance.
+ */
+ private ToStringHelper(String className) {
+ this.className = checkNotNull(className);
+ }
+
+ /**
+ * Configures the {@link ToStringHelper} so {@link #toString()} will ignore properties with null
+ * value. The order of calling this method, relative to the {@code add()}/{@code addValue()}
+ * methods, is not significant.
+ *
+ * @since 12.0
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper omitNullValues() {
+ omitNullValues = true;
+ return this;
+ }
+
+ /**
+ * Adds a name/value pair to the formatted output in {@code name=value} format. If {@code value}
+ * is {@code null}, the string {@code "null"} is used, unless {@link #omitNullValues()} is
+ * called, in which case this name/value pair will not be added.
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper add(String name, @Nullable Object value) {
+ return addHolder(name, value);
+ }
+
+ /**
+ * Adds a name/value pair to the formatted output in {@code name=value} format.
+ *
+ * @since 11.0 (source-compatible since 2.0)
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper add(String name, boolean value) {
+ return addHolder(name, String.valueOf(value));
+ }
+
+ /**
+ * Adds a name/value pair to the formatted output in {@code name=value} format.
+ *
+ * @since 11.0 (source-compatible since 2.0)
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper add(String name, char value) {
+ return addHolder(name, String.valueOf(value));
+ }
+
+ /**
+ * Adds a name/value pair to the formatted output in {@code name=value} format.
+ *
+ * @since 11.0 (source-compatible since 2.0)
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper add(String name, double value) {
+ return addHolder(name, String.valueOf(value));
+ }
+
+ /**
+ * Adds a name/value pair to the formatted output in {@code name=value} format.
+ *
+ * @since 11.0 (source-compatible since 2.0)
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper add(String name, float value) {
+ return addHolder(name, String.valueOf(value));
+ }
+
+ /**
+ * Adds a name/value pair to the formatted output in {@code name=value} format.
+ *
+ * @since 11.0 (source-compatible since 2.0)
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper add(String name, int value) {
+ return addHolder(name, String.valueOf(value));
+ }
+
+ /**
+ * Adds a name/value pair to the formatted output in {@code name=value} format.
+ *
+ * @since 11.0 (source-compatible since 2.0)
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper add(String name, long value) {
+ return addHolder(name, String.valueOf(value));
+ }
+
+ /**
+ * Adds an unnamed value to the formatted output.
+ *
+ * <p>It is strongly encouraged to use {@link #add(String, Object)} instead and give value a
+ * readable name.
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper addValue(@Nullable Object value) {
+ return addHolder(value);
+ }
+
+ /**
+ * Adds an unnamed value to the formatted output.
+ *
+ * <p>It is strongly encouraged to use {@link #add(String, boolean)} instead and give value a
+ * readable name.
+ *
+ * @since 11.0 (source-compatible since 2.0)
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper addValue(boolean value) {
+ return addHolder(String.valueOf(value));
+ }
+
+ /**
+ * Adds an unnamed value to the formatted output.
+ *
+ * <p>It is strongly encouraged to use {@link #add(String, char)} instead and give value a
+ * readable name.
+ *
+ * @since 11.0 (source-compatible since 2.0)
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper addValue(char value) {
+ return addHolder(String.valueOf(value));
+ }
+
+ /**
+ * Adds an unnamed value to the formatted output.
+ *
+ * <p>It is strongly encouraged to use {@link #add(String, double)} instead and give value a
+ * readable name.
+ *
+ * @since 11.0 (source-compatible since 2.0)
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper addValue(double value) {
+ return addHolder(String.valueOf(value));
+ }
+
+ /**
+ * Adds an unnamed value to the formatted output.
+ *
+ * <p>It is strongly encouraged to use {@link #add(String, float)} instead and give value a
+ * readable name.
+ *
+ * @since 11.0 (source-compatible since 2.0)
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper addValue(float value) {
+ return addHolder(String.valueOf(value));
+ }
+
+ /**
+ * Adds an unnamed value to the formatted output.
+ *
+ * <p>It is strongly encouraged to use {@link #add(String, int)} instead and give value a
+ * readable name.
+ *
+ * @since 11.0 (source-compatible since 2.0)
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper addValue(int value) {
+ return addHolder(String.valueOf(value));
+ }
+
+ /**
+ * Adds an unnamed value to the formatted output.
+ *
+ * <p>It is strongly encouraged to use {@link #add(String, long)} instead and give value a
+ * readable name.
+ *
+ * @since 11.0 (source-compatible since 2.0)
+ */
+ @CanIgnoreReturnValue
+ public ToStringHelper addValue(long value) {
+ return addHolder(String.valueOf(value));
+ }
+
+ /**
+ * Returns a string in the format specified by {@link Objects#toStringHelper(Object)}.
+ *
+ * <p>After calling this method, you can keep adding more properties to later call toString()
+ * again and get a more complete representation of the same object; but properties cannot be
+ * removed, so this only allows limited reuse of the helper instance. The helper allows
+ * duplication of properties (multiple name/value pairs with the same name can be added).
+ */
+ @Override
+ public String toString() {
+ // create a copy to keep it consistent in case value changes
+ boolean omitNullValuesSnapshot = omitNullValues;
+ String nextSeparator = "";
+ StringBuilder builder = new StringBuilder(32).append(className).append('{');
+ for (ValueHolder valueHolder = holderHead.next;
+ valueHolder != null;
+ valueHolder = valueHolder.next) {
+ if (!omitNullValuesSnapshot || valueHolder.value != null) {
+ builder.append(nextSeparator);
+ nextSeparator = ", ";
+
+ if (valueHolder.name != null) {
+ builder.append(valueHolder.name).append('=');
+ }
+ builder.append(valueHolder.value);
+ }
+ }
+ return builder.append('}').toString();
+ }
+
+ private ValueHolder addHolder() {
+ ValueHolder valueHolder = new ValueHolder();
+ holderTail = holderTail.next = valueHolder;
+ return valueHolder;
+ }
+
+ private ToStringHelper addHolder(@Nullable Object value) {
+ ValueHolder valueHolder = addHolder();
+ valueHolder.value = value;
+ return this;
+ }
+
+ private ToStringHelper addHolder(String name, @Nullable Object value) {
+ ValueHolder valueHolder = addHolder();
+ valueHolder.value = value;
+ valueHolder.name = checkNotNull(name);
+ return this;
+ }
+
+ private static final class ValueHolder {
+ String name;
+ Object value;
+ ValueHolder next;
+ }
+ }
}
|