public static AddressTypeEnum fromValue()

in src/main/java/org/openvasp/core/model/ivms101/Address.java [67:74]


    public static AddressTypeEnum fromValue(String value) {
      for (AddressTypeEnum b : AddressTypeEnum.values()) {
        if (b.value.equals(value)) {
          return b;
        }
      }
      throw new IllegalArgumentException("Unexpected value '" + value + "'");
    }