public static Country fromCode()

in src/main/java/org/openvasp/client/model/Country.java [31:40]


    public static Country fromCode(@NonNull final String code) {
        val result = ALL.get(code);
        if (result == null) {
            throw new NoSuchElementException(String.format(
                    "%s with code = %s does not exist",
                    Country.class.getName(),
                    code));
        }
        return result;
    }