Changes between Version 3 and Version 4 of utilitiespy


Ignore:
Timestamp:
10/09/24 10:13:53 (7 weeks ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • utilitiespy

    v3 v4  
    3939the enum method enumValues(claz) returns all the enum items contained in that claz. So in the above example, {{{enumValues(SimpleEnum) -> [SimpleEnum.P, SimpleEnum.Q]}}}.
    4040
    41 The enum method enumToString(item) returns the string representation. So in the above example, enumToString(SimpleEnum.P) returns "P".
     41The enum method enumToString(item) returns the string representation. So in the above example, {{{enumToString(SimpleEnum.P) ->"P"}}}.