akka.http.javadsl.model.Query.create()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.6k)|赞(0)|评价(0)|浏览(277)

本文整理了Java中akka.http.javadsl.model.Query.create方法的一些代码示例,展示了Query.create的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.create方法的具体详情如下:
包路径:akka.http.javadsl.model.Query
类名称:Query
方法名:create

Query.create介绍

[英]Returns a Query from the given parameters.
[中]返回给定参数的查询。

代码示例

代码示例来源:origin: com.typesafe.akka/akka-http-core_2.12

  1. /**
  2. * Returns a Query from the given parameters.
  3. */
  4. public static Query create(Iterable<Pair<String, String>> params) {
  5. @SuppressWarnings("unchecked")
  6. final Pair<String, String>[] paramsArray =
  7. StreamSupport.stream(params.spliterator(), false).toArray(Pair[]::new);
  8. return create(paramsArray);
  9. }

代码示例来源:origin: com.typesafe.akka/akka-http-core_2.11

  1. /**
  2. * Returns a Query from the given parameters.
  3. */
  4. public static Query create(Iterable<Pair<String, String>> params) {
  5. @SuppressWarnings("unchecked")
  6. final Pair<String, String>[] paramsArray =
  7. StreamSupport.stream(params.spliterator(), false).toArray(Pair[]::new);
  8. return create(paramsArray);
  9. }

代码示例来源:origin: com.typesafe.akka/akka-http-core

  1. /**
  2. * Returns a Query from the given parameters.
  3. */
  4. public static Query create(Iterable<Pair<String, String>> params) {
  5. @SuppressWarnings("unchecked")
  6. final Pair<String, String>[] paramsArray =
  7. StreamSupport.stream(params.spliterator(), false).toArray(Pair[]::new);
  8. return create(paramsArray);
  9. }

代码示例来源:origin: com.typesafe.akka/akka-http-core_2.12

  1. /**
  2. * Creates a FormData from the given parameters.
  3. */
  4. public static FormData create(Iterable<Pair<String, String>> params) {
  5. return new FormData(Query.create(params));
  6. }
  7. }

代码示例来源:origin: com.typesafe.akka/akka-http-core-experimental

  1. /**
  2. * Creates the FormData from the given parameters.
  3. */
  4. public static FormData create(Pair<String, String>... params) {
  5. return new FormData(Query.create(params));
  6. }

代码示例来源:origin: com.typesafe.akka/akka-http-core_2.11

  1. /**
  2. * Creates the FormData from the given parameters.
  3. */
  4. @SafeVarargs
  5. public static FormData create(Pair<String, String>... params) {
  6. return new FormData(Query.create(params));
  7. }

代码示例来源:origin: com.typesafe.akka/akka-http-core_2.12

  1. /**
  2. * Creates the FormData from the given parameters.
  3. */
  4. public static FormData create(Map<String, String> params) {
  5. return new FormData(Query.create(params));
  6. }

代码示例来源:origin: com.typesafe.akka/akka-http-core

  1. /**
  2. * Creates the FormData from the given parameters.
  3. */
  4. @SafeVarargs
  5. public static FormData create(Pair<String, String>... params) {
  6. return new FormData(Query.create(params));
  7. }

代码示例来源:origin: com.typesafe.akka/akka-http-core-experimental

  1. /**
  2. * Creates the FormData from the given parameters.
  3. */
  4. public static FormData create(Map<String, String> params) {
  5. return new FormData(Query.create(params));
  6. }
  7. }

代码示例来源:origin: com.typesafe.akka/akka-http-core_2.11

  1. /**
  2. * Creates the FormData from the given parameters.
  3. */
  4. public static FormData create(Map<String, String> params) {
  5. return new FormData(Query.create(params));
  6. }

代码示例来源:origin: com.typesafe.akka/akka-http-core_2.11

  1. /**
  2. * Creates a FormData from the given parameters.
  3. */
  4. public static FormData create(Iterable<Pair<String, String>> params) {
  5. return new FormData(Query.create(params));
  6. }
  7. }

代码示例来源:origin: com.typesafe.akka/akka-http-core

  1. /**
  2. * Creates a FormData from the given parameters.
  3. */
  4. public static FormData create(Iterable<Pair<String, String>> params) {
  5. return new FormData(Query.create(params));
  6. }
  7. }

代码示例来源:origin: com.typesafe.akka/akka-http-core_2.12

  1. /**
  2. * Creates the FormData from the given parameters.
  3. */
  4. @SafeVarargs
  5. public static FormData create(Pair<String, String>... params) {
  6. return new FormData(Query.create(params));
  7. }

代码示例来源:origin: com.typesafe.akka/akka-http-core

  1. /**
  2. * Creates the FormData from the given parameters.
  3. */
  4. public static FormData create(Map<String, String> params) {
  5. return new FormData(Query.create(params));
  6. }

相关文章