(String str)
| 17 | private String typeFlag; |
| 18 | |
| 19 | public static List<Class> arrayFrom(String str) { |
| 20 | Type listType = TypeToken.getParameterized(List.class, Class.class).getType(); |
| 21 | return new Gson().fromJson(str, listType); |
| 22 | } |
| 23 | |
| 24 | public Class(String typeId) { |
| 25 | this(typeId, typeId); |
no test coverage detected