value property
Gets the enumeration value as int. return The value.
Implementation
int get value {
switch (this) {
case PadStatus.unknown:
return 0;
case PadStatus.bonafide:
return 1;
case PadStatus.attack:
return 2;
}
}