public enum VisibilityOption| PRIVATE | 0 | Only the owner of the data may see this value. |
| INTERNAL | 1 | Only the owner of the data may see this value. However, the value may be used in the calculation of a derived attribute value that is PUBLIC or PROTECTED |
| PROTECTED | 2 | Only the owner, and people in a sharing relationship with the owner (e.g. a Coach) may see thsi value. |
| PUBLIC | 3 | Globally readable, everyone may see this value. |
| Description |
Returns the Description attribute of an enum. If Description is not an attribute
returns the .toString() value.
(Defined by EnumHelper) |
| GetAttributeOfTypeT |
Gets an attribute on an enum field value
(Defined by EnumHelper) |