static List fromProto()

in sdk-java/src/main/java/com/spotify/confidence/ConfidenceValue.java [400:405]


    static List fromProto(ListValue list) {
      return new List(
          list.getValuesList().stream()
              .map(ConfidenceValue::fromProto)
              .collect(Collectors.toList()));
    }