Package com.amazonaws.ivs.broadcast
Enum StageAudioManager.Source
- java.lang.Object
- 
- java.lang.Enum<StageAudioManager.Source>
- 
- com.amazonaws.ivs.broadcast.StageAudioManager.Source
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<StageAudioManager.Source>
 - Enclosing class:
- StageAudioManager
 
 public static enum StageAudioManager.Source extends java.lang.Enum<StageAudioManager.Source> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description GENERICUNPROCESSEDVOICE_COMMUNICATIONVOICE_PERFORMANCEVOICE_RECOGNITION
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static StageAudioManager.SourcevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static StageAudioManager.Source[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
GENERICpublic static final StageAudioManager.Source GENERIC 
 - 
VOICE_RECOGNITIONpublic static final StageAudioManager.Source VOICE_RECOGNITION 
 - 
VOICE_COMMUNICATIONpublic static final StageAudioManager.Source VOICE_COMMUNICATION 
 - 
VOICE_PERFORMANCEpublic static final StageAudioManager.Source VOICE_PERFORMANCE 
 - 
UNPROCESSEDpublic static final StageAudioManager.Source UNPROCESSED 
 
- 
 - 
Method Detail- 
valuespublic static StageAudioManager.Source[] 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 (StageAudioManager.Source c : StageAudioManager.Source.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static StageAudioManager.Source valueOf(java.lang.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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-