AndroidContentType enum

"what" you are playing. The content type expresses the general category of the content. This information is optional. But in case it is known (for instance movie for a movie streaming service or music for a music playback application) this information might be used by the audio framework to selectively configure some audio post-processing blocks.

Inheritance

Constructors

AndroidContentType(int value)
const
AndroidContentType.fromInt(int value)
factory

Values

unknown → const AndroidContentType

Content type value to use when the content type is unknown, or other than the ones defined.

const AndroidContentType(0)
speech → const AndroidContentType

Content type value to use when the content type is speech.

const AndroidContentType(1)
music → const AndroidContentType

Content type value to use when the content type is music.

const AndroidContentType(2)
movie → const AndroidContentType

Content type value to use when the content type is a soundtrack, typically accompanying a movie or TV program.

const AndroidContentType(3)
sonification → const AndroidContentType

Content type value to use when the content type is a sound used to accompany a user action, such as a beep or sound effect expressing a key click, or event, such as the type of a sound for a bonus being received in a game. These sounds are mostly synthesized or short Foley sounds.

const AndroidContentType(4)

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value int
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<AndroidContentType>
A constant List of the values in this enum, in order of their declaration.