|
- Method resolution order:
- SoundType
- enum.Enum
- builtins.object
Data and other attributes defined here:
- NONE = <SoundType.NONE: 0>
- TYPE1 = <SoundType.TYPE1: 1>
- TYPE2 = <SoundType.TYPE2: 2>
- TYPE3 = <SoundType.TYPE3: 3>
- TYPE4 = <SoundType.TYPE4: 4>
Data descriptors inherited from enum.Enum:
- name
- The name of the Enum member.
- value
- The value of the Enum member.
Static methods inherited from enum.EnumType:
- __contains__(value)
- Return True if `value` is in `cls`.
`value` is in `cls` if:
1) `value` is a member of `cls`, or
2) `value` is the value of one of the `cls`'s members.
- __getitem__(name)
- Return the member matching `name`.
- __iter__()
- Return members in definition order.
- __len__()
- Return the number of members (no aliases)
Readonly properties inherited from enum.EnumType:
- __members__
- Returns a mapping of member name->value.
This mapping lists all enum members, including aliases. Note that this
is a read-only view of the internal mapping.
|