public static NationalIdentifierTypeCode fromValue()

in src/main/java/org/openvasp/core/model/ivms101/NationalIdentifierTypeCode.java [63:70]


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