value property
Gets the enumeration value as int. return The value.
Implementation
int get value {
switch (this) {
case FaceMatcherThreshold.fmr100:
return 2000;
case FaceMatcherThreshold.fmr1000:
return 3000;
case FaceMatcherThreshold.fmr10000:
return 4000;
case FaceMatcherThreshold.fmr100000:
return 5000;
case FaceMatcherThreshold.fmr1000000:
return 6000;
case FaceMatcherThreshold.fmr10000000:
return 7000;
case FaceMatcherThreshold.fmr100000000:
return 8000;
case FaceMatcherThreshold.fmr1000000000:
return 9000;
case FaceMatcherThreshold.fmr10000000000:
return 10000;
}
}