Interface TextOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Text
,Text.Builder
public interface TextOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEnText()
The English copy.com.google.protobuf.ByteString
getEnTextBytes()
The English copy.LocalizationState
getLocalizationState()
Status of the localization.int
getLocalizationStateValue()
Status of the localization.String
getLocalizedText()
The requested localized copy (if applicable).com.google.protobuf.ByteString
getLocalizedTextBytes()
The requested localized copy (if applicable).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEnText
String getEnText()
The English copy.
string en_text = 1;
- Returns:
- The enText.
-
getEnTextBytes
com.google.protobuf.ByteString getEnTextBytes()
The English copy.
string en_text = 1;
- Returns:
- The bytes for enText.
-
getLocalizedText
String getLocalizedText()
The requested localized copy (if applicable).
string localized_text = 2;
- Returns:
- The localizedText.
-
getLocalizedTextBytes
com.google.protobuf.ByteString getLocalizedTextBytes()
The requested localized copy (if applicable).
string localized_text = 2;
- Returns:
- The bytes for localizedText.
-
getLocalizationStateValue
int getLocalizationStateValue()
Status of the localization.
.google.cloud.advisorynotifications.v1.LocalizationState localization_state = 3;
- Returns:
- The enum numeric value on the wire for localizationState.
-
getLocalizationState
LocalizationState getLocalizationState()
Status of the localization.
.google.cloud.advisorynotifications.v1.LocalizationState localization_state = 3;
- Returns:
- The localizationState.
-
-