com.google.protobuf.LegacyUnredactedTextFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protobuf-java Show documentation
Show all versions of protobuf-java Show documentation
Core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an
efficient yet extensible format.
package com.google.protobuf;
/**
* The legacy APIs preserve the existing toString() behavior (output TextFormat), which allows us to
* migrate toString callers that expect TextFormat output off toString. Eventually, we will make
* toString output DebugFormat, which is randomized and redacts SPII fields (incompatible with
* TextFormat).
*/
public final class LegacyUnredactedTextFormat {
private LegacyUnredactedTextFormat() {}
/** Like {@code TextFormat.printer().printToString(message)}, but for legacy purposes. */
static String legacyUnredactedMultilineString(MessageOrBuilder message) {
return TextFormat.printer().printToString(message);
}
/** Like {@code TextFormat.printer().printToString(fields)}, but for legacy purposes. */
static String legacyUnredactedMultilineString(UnknownFieldSet fields) {
return TextFormat.printer().printToString(fields);
}
/**
* Like {@code TextFormat.printer().emittingSingleLine(true).printToString(message)}, but for
* legacy purposes.
*/
static String legacyUnredactedSingleLineString(MessageOrBuilder message) {
return TextFormat.printer().emittingSingleLine(true).printToString(message);
}
/**
* Like {@code TextFormat.printer().emittingSingleLine(true).printToString(fields)}, but for
* legacy purposes.
*/
static String legacyUnredactedSingleLineString(UnknownFieldSet fields) {
return TextFormat.printer().emittingSingleLine(true).printToString(fields);
}
}