public static JurIdType fromId()

in src/main/java/org/openvasp/client/model/JuridicalPersonId.java [64:75]


        public static JurIdType fromId(int id) {
            for (val item : JurIdType.values()) {
                if (item.id == id) {
                    return item;
                }
            }

            throw new NoSuchElementException(String.format(
                    "%s with id = %d does not exist",
                    JurIdType.class.getName(),
                    id));
        }