Enum SafeHandleType
- java.lang.Object
-
- java.lang.Enum<SafeHandleType>
-
- com.microsoft.cognitiveservices.speech.util.SafeHandleType
-
- All Implemented Interfaces:
Serializable,Comparable<SafeHandleType>
public enum SafeHandleType extends Enum<SafeHandleType>
INTERNAL
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SafeHandleTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SafeHandleType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UnInitialized
public static final SafeHandleType UnInitialized
INTERNAL
-
Event
public static final SafeHandleType Event
INTERNAL
-
Recognizer
public static final SafeHandleType Recognizer
INTERNAL
-
SpeechConfig
public static final SafeHandleType SpeechConfig
INTERNAL
-
AudioConfig
public static final SafeHandleType AudioConfig
INTERNAL
-
PropertyCollection
public static final SafeHandleType PropertyCollection
INTERNAL
-
RecognitionResult
public static final SafeHandleType RecognitionResult
INTERNAL
-
Connection
public static final SafeHandleType Connection
INTERNAL
-
ConnectionMessage
public static final SafeHandleType ConnectionMessage
INTERNAL
-
ConnectionMessageEvent
public static final SafeHandleType ConnectionMessageEvent
INTERNAL
-
AudioInputStream
public static final SafeHandleType AudioInputStream
INTERNAL
-
AudioOutputStream
public static final SafeHandleType AudioOutputStream
INTERNAL
-
AudioStreamFormat
public static final SafeHandleType AudioStreamFormat
INTERNAL
-
KeywordModel
public static final SafeHandleType KeywordModel
INTERNAL
-
User
public static final SafeHandleType User
INTERNAL
-
Participant
public static final SafeHandleType Participant
INTERNAL
-
Conversation
public static final SafeHandleType Conversation
INTERNAL
-
Meeting
public static final SafeHandleType Meeting
INTERNAL
-
DialogServiceConnector
public static final SafeHandleType DialogServiceConnector
INTERNAL
-
TurnStatusReceivedEvent
public static final SafeHandleType TurnStatusReceivedEvent
INTERNAL
-
ActivityReceivedEvent
public static final SafeHandleType ActivityReceivedEvent
INTERNAL
-
AutoDetectSourceLanguageConfig
public static final SafeHandleType AutoDetectSourceLanguageConfig
INTERNAL
-
SourceLanguageConfig
public static final SafeHandleType SourceLanguageConfig
INTERNAL
-
SynthesisEvent
public static final SafeHandleType SynthesisEvent
INTERNAL
-
SynthesisRequest
public static final SafeHandleType SynthesisRequest
INTERNAL
-
SynthesisResult
public static final SafeHandleType SynthesisResult
INTERNAL
-
VoiceInfo
public static final SafeHandleType VoiceInfo
INTERNAL
-
AudioDataStream
public static final SafeHandleType AudioDataStream
INTERNAL
-
Synthesizer
public static final SafeHandleType Synthesizer
INTERNAL
-
Grammar
public static final SafeHandleType Grammar
INTERNAL
-
TranslationSynthesis
public static final SafeHandleType TranslationSynthesis
INTERNAL
-
ConversationTranslator
public static final SafeHandleType ConversationTranslator
INTERNAL
-
KeywordRecognizer
public static final SafeHandleType KeywordRecognizer
INTERNAL
-
PronunciationAssessmentConfig
public static final SafeHandleType PronunciationAssessmentConfig
INTERNAL
-
AudioProcessingOptions
public static final SafeHandleType AudioProcessingOptions
INTERNAL
-
SpeechRecognitionModel
public static final SafeHandleType SpeechRecognitionModel
INTERNAL
-
SpeechTranslationModel
public static final SafeHandleType SpeechTranslationModel
INTERNAL
-
JSONVALUE
public static final SafeHandleType JSONVALUE
INTERNAL
-
JSONBUILDER
public static final SafeHandleType JSONBUILDER
INTERNAL
-
EventLoggerCallback
public static final SafeHandleType EventLoggerCallback
INTERNAL
-
-
Method Detail
-
values
public static SafeHandleType[] 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 (SafeHandleType c : SafeHandleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SafeHandleType 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
-
-