value property
Gets the enumeration value as int. return The value.
Implementation
int get value {
switch (this) {
case PoolingMethod.average:
return 0;
case PoolingMethod.maximum:
return 1;
}
}
Gets the enumeration value as int. return The value.
int get value {
switch (this) {
case PoolingMethod.average:
return 0;
case PoolingMethod.maximum:
return 1;
}
}