public static NationalIdentifierTypeEnum fromValue()

in src/main/java/org/openvasp/core/model/ivms101/NationalIdentification.java [84:91]


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