coreValue property
Implementation
@visibleForTesting
int get coreValue {
switch (this) {
case unknown:
return -1;
case organization:
return 0;
case private:
return 1;
case public:
return 2;
case shared:
return 3;
}
}