static { lookup = new HashMap<>(); for (MsoBlogCategorySupport e : EnumSet.allOf(MsoBlogCategorySupport.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 MsoBlogCategorySupport find(int value, MsoBlogCategorySupport defaultValue) { MsoBlogCategorySupport result = MsoBlogCategorySupport.find(value); if (result == null) { result = defaultValue; } return result; }