public interface TruncatableStringOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
int |
getTruncatedByteCount()
The number of bytes removed from the original string.
|
java.lang.String |
getValue()
The shortened string.
|
com.google.protobuf.ByteString |
getValueBytes()
The shortened string.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofjava.lang.String getValue()
The shortened string. For example, if the original string was 500 bytes long and the limit of the string was 128 bytes, then this value contains the first 128 bytes of the 500-byte string. Note that truncation always happens on the character boundary, to ensure that truncated string is still valid UTF8. In case of multi-byte characters, size of truncated string can be less than truncation limit.
string value = 1;com.google.protobuf.ByteString getValueBytes()
The shortened string. For example, if the original string was 500 bytes long and the limit of the string was 128 bytes, then this value contains the first 128 bytes of the 500-byte string. Note that truncation always happens on the character boundary, to ensure that truncated string is still valid UTF8. In case of multi-byte characters, size of truncated string can be less than truncation limit.
string value = 1;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;