Changes between Version 3 and Version 4 of utilitiespy
- Timestamp:
- 10/09/24 10:13:53 (7 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
utilitiespy
v3 v4 39 39 the enum method enumValues(claz) returns all the enum items contained in that claz. So in the above example, {{{enumValues(SimpleEnum) -> [SimpleEnum.P, SimpleEnum.Q]}}}. 40 40 41 The enum method enumToString(item) returns the string representation. So in the above example, enumToString(SimpleEnum.P) returns "P".41 The enum method enumToString(item) returns the string representation. So in the above example, {{{enumToString(SimpleEnum.P) ->"P"}}}.