Enum ElementaryStream.ElementaryStreamCase
- java.lang.Object
-
- java.lang.Enum<ElementaryStream.ElementaryStreamCase>
-
- com.google.cloud.video.transcoder.v1.ElementaryStream.ElementaryStreamCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<ElementaryStream.ElementaryStreamCase>
- Enclosing class:
- ElementaryStream
public static enum ElementaryStream.ElementaryStreamCase extends Enum<ElementaryStream.ElementaryStreamCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUDIO_STREAM
ELEMENTARYSTREAM_NOT_SET
TEXT_STREAM
VIDEO_STREAM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ElementaryStream.ElementaryStreamCase
forNumber(int value)
int
getNumber()
static ElementaryStream.ElementaryStreamCase
valueOf(int value)
Deprecated.static ElementaryStream.ElementaryStreamCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static ElementaryStream.ElementaryStreamCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VIDEO_STREAM
public static final ElementaryStream.ElementaryStreamCase VIDEO_STREAM
-
AUDIO_STREAM
public static final ElementaryStream.ElementaryStreamCase AUDIO_STREAM
-
TEXT_STREAM
public static final ElementaryStream.ElementaryStreamCase TEXT_STREAM
-
ELEMENTARYSTREAM_NOT_SET
public static final ElementaryStream.ElementaryStreamCase ELEMENTARYSTREAM_NOT_SET
-
-
Method Detail
-
values
public static ElementaryStream.ElementaryStreamCase[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ElementaryStream.ElementaryStreamCase c : ElementaryStream.ElementaryStreamCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ElementaryStream.ElementaryStreamCase valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
valueOf
@Deprecated public static ElementaryStream.ElementaryStreamCase valueOf(int value)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
forNumber
public static ElementaryStream.ElementaryStreamCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-