Interface SpeechAdaptation.ABNFGrammarOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SpeechAdaptation.ABNFGrammar
,SpeechAdaptation.ABNFGrammar.Builder
- Enclosing class:
- SpeechAdaptation
public static interface SpeechAdaptation.ABNFGrammarOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAbnfStrings(int index)
All declarations and rules of an ABNF grammar broken up into multiple strings that will end up concatenated.com.google.protobuf.ByteString
getAbnfStringsBytes(int index)
All declarations and rules of an ABNF grammar broken up into multiple strings that will end up concatenated.int
getAbnfStringsCount()
All declarations and rules of an ABNF grammar broken up into multiple strings that will end up concatenated.List<String>
getAbnfStringsList()
All declarations and rules of an ABNF grammar broken up into multiple strings that will end up concatenated.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAbnfStringsList
List<String> getAbnfStringsList()
All declarations and rules of an ABNF grammar broken up into multiple strings that will end up concatenated.
repeated string abnf_strings = 1;
- Returns:
- A list containing the abnfStrings.
-
getAbnfStringsCount
int getAbnfStringsCount()
All declarations and rules of an ABNF grammar broken up into multiple strings that will end up concatenated.
repeated string abnf_strings = 1;
- Returns:
- The count of abnfStrings.
-
getAbnfStrings
String getAbnfStrings(int index)
All declarations and rules of an ABNF grammar broken up into multiple strings that will end up concatenated.
repeated string abnf_strings = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The abnfStrings at the given index.
-
getAbnfStringsBytes
com.google.protobuf.ByteString getAbnfStringsBytes(int index)
All declarations and rules of an ABNF grammar broken up into multiple strings that will end up concatenated.
repeated string abnf_strings = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the abnfStrings at the given index.
-
-