Interface ElementaryStreamOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ElementaryStream,ElementaryStream.Builder
public interface ElementaryStreamOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AudioStreamgetAudioStream()Encoding of an audio stream.AudioStreamOrBuildergetAudioStreamOrBuilder()Encoding of an audio stream.ElementaryStream.ElementaryStreamCasegetElementaryStreamCase()StringgetKey()A unique key for this elementary stream.com.google.protobuf.ByteStringgetKeyBytes()A unique key for this elementary stream.TextStreamgetTextStream()Encoding of a text stream.TextStreamOrBuildergetTextStreamOrBuilder()Encoding of a text stream.VideoStreamgetVideoStream()Encoding of a video stream.VideoStreamOrBuildergetVideoStreamOrBuilder()Encoding of a video stream.booleanhasAudioStream()Encoding of an audio stream.booleanhasTextStream()Encoding of a text stream.booleanhasVideoStream()Encoding of a video stream.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getKey
String getKey()
A unique key for this elementary stream.
string key = 4;- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()
A unique key for this elementary stream.
string key = 4;- Returns:
- The bytes for key.
-
hasVideoStream
boolean hasVideoStream()
Encoding of a video stream.
.google.cloud.video.transcoder.v1.VideoStream video_stream = 1;- Returns:
- Whether the videoStream field is set.
-
getVideoStream
VideoStream getVideoStream()
Encoding of a video stream.
.google.cloud.video.transcoder.v1.VideoStream video_stream = 1;- Returns:
- The videoStream.
-
getVideoStreamOrBuilder
VideoStreamOrBuilder getVideoStreamOrBuilder()
Encoding of a video stream.
.google.cloud.video.transcoder.v1.VideoStream video_stream = 1;
-
hasAudioStream
boolean hasAudioStream()
Encoding of an audio stream.
.google.cloud.video.transcoder.v1.AudioStream audio_stream = 2;- Returns:
- Whether the audioStream field is set.
-
getAudioStream
AudioStream getAudioStream()
Encoding of an audio stream.
.google.cloud.video.transcoder.v1.AudioStream audio_stream = 2;- Returns:
- The audioStream.
-
getAudioStreamOrBuilder
AudioStreamOrBuilder getAudioStreamOrBuilder()
Encoding of an audio stream.
.google.cloud.video.transcoder.v1.AudioStream audio_stream = 2;
-
hasTextStream
boolean hasTextStream()
Encoding of a text stream. For example, closed captions or subtitles.
.google.cloud.video.transcoder.v1.TextStream text_stream = 3;- Returns:
- Whether the textStream field is set.
-
getTextStream
TextStream getTextStream()
Encoding of a text stream. For example, closed captions or subtitles.
.google.cloud.video.transcoder.v1.TextStream text_stream = 3;- Returns:
- The textStream.
-
getTextStreamOrBuilder
TextStreamOrBuilder getTextStreamOrBuilder()
Encoding of a text stream. For example, closed captions or subtitles.
.google.cloud.video.transcoder.v1.TextStream text_stream = 3;
-
getElementaryStreamCase
ElementaryStream.ElementaryStreamCase getElementaryStreamCase()
-
-