intValue property
int
get
intValue
Implementation
int get intValue {
switch(this){
case PlayFormat.unKnown:
return 0;
case PlayFormat.m3u8:
return 1;
case PlayFormat.mp4:
return 2;
case PlayFormat.flv:
return 3;
case PlayFormat.mp3:
return 4;
case PlayFormat.aac:
return 5;
default:
return 0;
}
}