Class TruncatableString (2.42.0)

public final class TruncatableString extends GeneratedMessageV3 implements TruncatableStringOrBuilder

Represents a string that might be shortened to a specified length.

Protobuf type google.devtools.cloudtrace.v2.TruncatableString

Static Fields

TRUNCATED_BYTE_COUNT_FIELD_NUMBER

public static final int TRUNCATED_BYTE_COUNT_FIELD_NUMBER
Field Value
TypeDescription
int

VALUE_FIELD_NUMBER

public static final int VALUE_FIELD_NUMBER
Field Value
TypeDescription
int

Static Methods

getDefaultInstance()

public static TruncatableString getDefaultInstance()
Returns
TypeDescription
TruncatableString

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

newBuilder()

public static TruncatableString.Builder newBuilder()
Returns
TypeDescription
TruncatableString.Builder

newBuilder(TruncatableString prototype)

public static TruncatableString.Builder newBuilder(TruncatableString prototype)
Parameter
NameDescription
prototypeTruncatableString
Returns
TypeDescription
TruncatableString.Builder

parseDelimitedFrom(InputStream input)

public static TruncatableString parseDelimitedFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
TruncatableString
Exceptions
TypeDescription
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static TruncatableString parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
TruncatableString
Exceptions
TypeDescription
IOException

parseFrom(byte[] data)

public static TruncatableString parseFrom(byte[] data)
Parameter
NameDescription
databyte[]
Returns
TypeDescription
TruncatableString
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static TruncatableString parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
databyte[]
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
TruncatableString
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data)

public static TruncatableString parseFrom(ByteString data)
Parameter
NameDescription
dataByteString
Returns
TypeDescription
TruncatableString
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static TruncatableString parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteString
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
TruncatableString
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static TruncatableString parseFrom(CodedInputStream input)
Parameter
NameDescription
inputCodedInputStream
Returns
TypeDescription
TruncatableString
Exceptions
TypeDescription
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static TruncatableString parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
TruncatableString
Exceptions
TypeDescription
IOException

parseFrom(InputStream input)

public static TruncatableString parseFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
TruncatableString
Exceptions
TypeDescription
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static TruncatableString parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
TruncatableString
Exceptions
TypeDescription
IOException

parseFrom(ByteBuffer data)

public static TruncatableString parseFrom(ByteBuffer data)
Parameter
NameDescription
dataByteBuffer
Returns
TypeDescription
TruncatableString
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static TruncatableString parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteBuffer
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
TruncatableString
Exceptions
TypeDescription
InvalidProtocolBufferException

parser()

public static Parser<TruncatableString> parser()
Returns
TypeDescription
Parser<TruncatableString>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
NameDescription
objObject
Returns
TypeDescription
boolean
Overrides

getDefaultInstanceForType()

public TruncatableString getDefaultInstanceForType()
Returns
TypeDescription
TruncatableString

getParserForType()

public Parser<TruncatableString> getParserForType()
Returns
TypeDescription
Parser<TruncatableString>
Overrides

getSerializedSize()

public int getSerializedSize()
Returns
TypeDescription
int
Overrides

getTruncatedByteCount()

public int getTruncatedByteCount()

The number of bytes removed from the original string. If this value is 0, then the string was not shortened.

int32 truncated_byte_count = 2;

Returns
TypeDescription
int

The truncatedByteCount.

getValue()

public String getValue()

The shortened string. For example, if the original string is 500 bytes long and the limit of the string is 128 bytes, then value contains the first 128 bytes of the 500-byte string.

Truncation always happens on a UTF8 character boundary. If there are multi-byte characters in the string, then the length of the shortened string might be less than the size limit.

string value = 1;

Returns
TypeDescription
String

The value.

getValueBytes()

public ByteString getValueBytes()

The shortened string. For example, if the original string is 500 bytes long and the limit of the string is 128 bytes, then value contains the first 128 bytes of the 500-byte string.

Truncation always happens on a UTF8 character boundary. If there are multi-byte characters in the string, then the length of the shortened string might be less than the size limit.

string value = 1;

Returns
TypeDescription
ByteString

The bytes for value.

hashCode()

public int hashCode()
Returns
TypeDescription
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

newBuilderForType()

public TruncatableString.Builder newBuilderForType()
Returns
TypeDescription
TruncatableString.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected TruncatableString.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
NameDescription
parentBuilderParent
Returns
TypeDescription
TruncatableString.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
NameDescription
unusedUnusedPrivateParameter
Returns
TypeDescription
Object
Overrides

toBuilder()

public TruncatableString.Builder toBuilder()
Returns
TypeDescription
TruncatableString.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
NameDescription
outputCodedOutputStream
Overrides
Exceptions
TypeDescription
IOException