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 AudioStream
getAudioStream()
Encoding of an audio stream.AudioStreamOrBuilder
getAudioStreamOrBuilder()
Encoding of an audio stream.ElementaryStream.ElementaryStreamCase
getElementaryStreamCase()
String
getKey()
A unique key for this elementary stream.com.google.protobuf.ByteString
getKeyBytes()
A unique key for this elementary stream.TextStream
getTextStream()
Encoding of a text stream.TextStreamOrBuilder
getTextStreamOrBuilder()
Encoding of a text stream.VideoStream
getVideoStream()
Encoding of a video stream.VideoStreamOrBuilder
getVideoStreamOrBuilder()
Encoding of a video stream.boolean
hasAudioStream()
Encoding of an audio stream.boolean
hasTextStream()
Encoding of a text stream.boolean
hasVideoStream()
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()
-
-