ID3Genre
public enum ID3Genre : Int, Equatable
An enum that contains the genres supported by the ID3 standard using specific identifiers.
-
Blues genre.
Declaration
Swift
case Blues = 0
-
Classic rock genre.
Declaration
Swift
case ClassicRock = 1
-
Country genre.
Declaration
Swift
case Country = 2
-
Dance genre.
Declaration
Swift
case Dance = 3
-
Disco genre.
Declaration
Swift
case Disco = 4
-
Funk genre.
Declaration
Swift
case Funk = 5
-
Grunge genre.
Declaration
Swift
case Grunge = 6
-
Hip hop genre.
Declaration
Swift
case HipHop = 7
-
Jazz genre.
Declaration
Swift
case Jazz = 8
-
Metal genre.
Declaration
Swift
case Metal = 9
-
New age genre.
Declaration
Swift
case NewAge = 10
-
Oldies genre.
Declaration
Swift
case Oldies = 11
-
Other genre.
Declaration
Swift
case Other = 12
-
Pop genre.
Declaration
Swift
case Pop = 13
-
R&B genre.
Declaration
Swift
case RAndB = 14
-
Rap genre.
Declaration
Swift
case Rap = 15
-
Reggae genre.
Declaration
Swift
case Reggae = 16
-
Rock genre.
Declaration
Swift
case Rock = 17
-
Techno genre.
Declaration
Swift
case Techno = 18
-
Industrial genre.
Declaration
Swift
case Industrial = 19
-
Alternative genre.
Declaration
Swift
case Alternative = 20
-
Ska genre.
Declaration
Swift
case Ska = 21
-
Death metal genre.
Declaration
Swift
case DeathMetal = 22
-
Pranks genre.
Declaration
Swift
case Pranks = 23
-
Soundtrack genre.
Declaration
Swift
case Soundtrack = 24
-
Euro techno genre.
Declaration
Swift
case EuroTechno = 25
-
Ambient genre.
Declaration
Swift
case Ambient = 26
-
Tip hop genre.
Declaration
Swift
case TripHop = 27
-
vocal genre.
Declaration
Swift
case Vocal = 28
-
Jazz funk genre.
Declaration
Swift
case JazzFunk = 29
-
Fusion genre.
Declaration
Swift
case Fusion = 30
-
Trance genre.
Declaration
Swift
case Trance = 31
-
Classical genre.
Declaration
Swift
case Classical = 32
-
Instrumental genre.
Declaration
Swift
case Instrumental = 33
-
Acid genre.
Declaration
Swift
case Acid = 34
-
House genre.
Declaration
Swift
case House = 35
-
Game genre.
Declaration
Swift
case Game = 36
-
Soundclip genre.
Declaration
Swift
case SoundClip = 37
-
Gospel genre.
Declaration
Swift
case Gospel = 38
-
Noise genre.
Declaration
Swift
case Noise = 39
-
Altern rock genre.
Declaration
Swift
case AlternRock = 40
-
Bass genre.
Declaration
Swift
case Bass = 41
-
Soul genre.
Declaration
Swift
case Soul = 42
-
Punk genre.
Declaration
Swift
case Punk = 43
-
Space genre.
Declaration
Swift
case Space = 44
-
Meditative genre.
Declaration
Swift
case Meditative = 45
-
Instrumental pop genre.
Declaration
Swift
case InstrumentalPop = 46
-
Instrumental rock genre.
Declaration
Swift
case InstrumentalRock = 47
-
Ethnic genre.
Declaration
Swift
case Ethnic = 48
-
Gothic genre.
Declaration
Swift
case Gothic = 49
-
Darkwave genre.
Declaration
Swift
case Darkwave = 50
-
TechnoIndustrial genre.
Declaration
Swift
case TechnoIndustrial = 51
-
Electronic genre.
Declaration
Swift
case Electronic = 52
-
Pop folk genre.
Declaration
Swift
case PopFolk = 53
-
Eurodance genre.
Declaration
Swift
case Eurodance = 54
-
Dream genre.
Declaration
Swift
case Dream = 55
-
Souther rock genre.
Declaration
Swift
case SouthernRock = 56
-
Comedy genre.
Declaration
Swift
case Comedy = 57
-
Cult genre.
Declaration
Swift
case Cult = 58
-
Gangsta genre.
Declaration
Swift
case Gangsta = 59
-
Top 40 genre.
Declaration
Swift
case Top40 = 60
-
Christian rap genre.
Declaration
Swift
case ChristianRap = 61
-
Pop funk genre.
Declaration
Swift
case PopFunk = 62
-
Jungle genre.
Declaration
Swift
case Jungle = 63
-
Native american genre.
Declaration
Swift
case NativeAmerican = 64
-
Cabaret genre.
Declaration
Swift
case Cabaret = 65
-
New wave genre.
Declaration
Swift
case NewWave = 66
-
Psychadelic genre.
Declaration
Swift
case Psychadelic = 67
-
Rave genre.
Declaration
Swift
case Rave = 68
-
Showtunes genre.
Declaration
Swift
case Showtunes = 69
-
Trailer genre.
Declaration
Swift
case Trailer = 70
-
Lofi genre.
Declaration
Swift
case LoFi = 71
-
Tribal genre.
Declaration
Swift
case Tribal = 72
-
Acid punk genre.
Declaration
Swift
case AcidPunk = 73
-
Acid jazz genre.
Declaration
Swift
case AcidJazz = 74
-
Polka genre.
Declaration
Swift
case Polka = 75
-
Retro genre.
Declaration
Swift
case Retro = 76
-
Musical genre.
Declaration
Swift
case Musical = 77
-
Rock and roll genre.
Declaration
Swift
case RockAndRoll = 78
-
Hard rock genre.
Declaration
Swift
case HardRock = 79
-
Remix genre.
Declaration
Swift
case Remix = 80
-
Cover genre.
Declaration
Swift
case Cover = 81
-
Compare two ID3Genre.
Declaration
Swift
public static func == (lhs: ID3Genre, rhs: ID3Genre) -> Bool
Parameters
lhs
left side of compare operation.
rhs
right side of compare operation.
Return Value
true if the genre values are the same, else false.