""" All of the Enums that are used throughout the chardet package.
:author: Dan Blanchard (dan.blanchard@gmail.com) """
""" This enum represents the different states a universal detector can be in. """
""" This enum represents the different language filters we can apply to a ``UniversalDetector``. """
""" This enum represents the different states a prober can be in. """
""" This enum represents the different states a state machine can be in. """
""" This enum represents the likelihood of a character following the previous one. """
def get_num_categories(cls): """:returns: The number of likelihood categories in the enum.""" return 4
""" This enum represents the different categories language models for ``SingleByteCharsetProber`` put characters into.
Anything less than CONTROL is considered a letter. """ |