edu.cmu.sphinx.recognizer
Class RecognizerState

java.lang.Object
  extended byedu.cmu.sphinx.recognizer.RecognizerState

public class RecognizerState
extends java.lang.Object

Defines the possible states of the recognizer.


Field Summary
static RecognizerState ALLOCATED
          The recognizer has been allocated
static RecognizerState ALLOCATING
          The recognizer is allocating resources
static RecognizerState DEALLOCATED
          The recognizer is in the deallocated state.
static RecognizerState DEALLOCATING
          The recognizer is deallocating resources
static RecognizerState ERROR
          The recognizer is in an error state
static RecognizerState READY
          The recognizer is ready to recognize
static RecognizerState RECOGNIZING
          The recognizer is recognizing speech
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

DEALLOCATED

public static final RecognizerState DEALLOCATED
The recognizer is in the deallocated state. No resources are in use by this recognizer.


ALLOCATING

public static final RecognizerState ALLOCATING
The recognizer is allocating resources


ALLOCATED

public static final RecognizerState ALLOCATED
The recognizer has been allocated


READY

public static final RecognizerState READY
The recognizer is ready to recognize


RECOGNIZING

public static final RecognizerState RECOGNIZING
The recognizer is recognizing speech


DEALLOCATING

public static final RecognizerState DEALLOCATING
The recognizer is deallocating resources


ERROR

public static final RecognizerState ERROR
The recognizer is in an error state

Method Detail

toString

public java.lang.String toString()