com.amazonaws.http.HttpMethodName.name()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(2.8k)|赞(0)|评价(0)|浏览(66)

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

HttpMethodName.name介绍

暂无

代码示例

代码示例来源:origin: aws/aws-sdk-java

private static HttpMethod toNettyHttpMethod(HttpMethodName method) {
    return HttpMethod.valueOf(method.name());
  }
}

代码示例来源:origin: aws/aws-sdk-java

/**
 * @param value Raw string representing value of enum
 * @return HttpMethodName enum or null if value is not present.
 * @throws IllegalArgumentException If value does not represent a known enum value.
 */
public static HttpMethodName fromValue(String value) {
  if (StringUtils.isNullOrEmpty(value)) {
    return null;
  }
  final String upperCaseValue = StringUtils.upperCase(value);
  for (HttpMethodName httpMethodName : values()) {
    if (httpMethodName.name().equals(upperCaseValue)) {
      return httpMethodName;
    }
  }
  throw new IllegalArgumentException("Unsupported HTTP method name " + value);
}

代码示例来源:origin: com.amazonaws/aws-java-sdk-core

/**
 * @param value Raw string representing value of enum
 * @return HttpMethodName enum or null if value is not present.
 * @throws IllegalArgumentException If value does not represent a known enum value.
 */
public static HttpMethodName fromValue(String value) {
  if (StringUtils.isNullOrEmpty(value)) {
    return null;
  }
  final String upperCaseValue = StringUtils.upperCase(value);
  for (HttpMethodName httpMethodName : values()) {
    if (httpMethodName.name().equals(upperCaseValue)) {
      return httpMethodName;
    }
  }
  throw new IllegalArgumentException("Unsupported HTTP method name " + value);
}

代码示例来源:origin: awslabs/amazon-kinesis-video-streams-producer-sdk-java

protected boolean shouldAddContentUnsignedPayloadInHeader(final String httpMethodName) {
    return HttpMethodName.POST.name().equals(httpMethodName);
  }
}

代码示例来源:origin: com.amazonaws/aws-java-sdk-kinesisvideo

private static HttpMethod toNettyHttpMethod(HttpMethodName method) {
    return HttpMethod.valueOf(method.name());
  }
}

代码示例来源:origin: Nextdoor/bender

/**
 * @param value Raw string representing value of enum
 * @return HttpMethodName enum or null if value is not present.
 * @throws IllegalArgumentException If value does not represent a known enum value.
 */
public static HttpMethodName fromValue(String value) {
  if (StringUtils.isNullOrEmpty(value)) {
    return null;
  }
  final String upperCaseValue = StringUtils.upperCase(value);
  for (HttpMethodName httpMethodName : values()) {
    if (httpMethodName.name().equals(upperCaseValue)) {
      return httpMethodName;
    }
  }
  throw new IllegalArgumentException("Unsupported HTTP method name " + value);
}

代码示例来源:origin: awslabs/amazon-kinesis-video-streams-producer-sdk-java

@Override
protected String calculateContentHash(final SignableRequest<?> request) {
  if (shouldAddContentUnsignedPayloadInHeader(request.getHttpMethod().name())) {
    return CONTENT_UNSIGNED_PAYLOAD;
  }
  return  super.calculateContentHash(request);
}

相关文章