static { lookup = new HashMap<>(); for (WdToaFormat e : EnumSet.allOf(WdToaFormat.class)) { lookup.put(e.value(), e); } }
/** * Find the enum type by its value, with the default value. * * @param value The enum value. * @param defaultValue The default return value if the enum value does not exists. * @return The enum type, or the default value if this enum value does not exists. * @since 1.0 */ public static WdToaFormat find(int value, WdToaFormat defaultValue) { WdToaFormat result = WdToaFormat.find(value); if (result == null) { result = defaultValue; } return result; }