package ie.dcu.apps.ist.exp; /** * Selection of what points in time to output the masks that * the user has obtained so far in their interactions. * * @author Kevin McGuinness */ public enum StorageSelection { All, None, Final; public static StorageSelection parse(String s) { for (StorageSelection ss : values()) { if (ss.toString().equalsIgnoreCase(s)) { return ss; } } return null; } };