String getFormattedParams()

in scim-spec/scim-spec-schema/src/main/java/org/apache/directory/scim/spec/resources/PhoneNumber.java [395:405]


    String getFormattedParams() {
      String paramsFormatted = "";

      if (params != null) {
        for (Map.Entry<String, String> entry : params.entrySet()) {
          paramsFormatted += String.format(PARAMS_STRING, entry.getKey(), entry.getValue() != null ? entry.getValue() : "");
        }
      }

      return !paramsFormatted.isEmpty() ? paramsFormatted : null;
    }