Reading the code, I saw that the `_method` parameter in [here](https://github.com/daostack/arc/blob/master/contracts/globalConstraints/GlobalConstraintInterface.sol#L6) is always called with one of the following: * `mintReputation` * `mintTokens` * `registerScheme` * `unregisterScheme` * `sendEther` * `externalTokenTransfer` * `externalTokenTransferFrom` * `externalTokenIncreaseApproval` * `externalTokenDecreaseApproval` * `genericAction` - all other actions. Can we refactor it to use an `enum` instead?