value property

int value

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;
	}
  	}