org.simpleframework.http.Request.getLocales()方法的使用及代码示例

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

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

Request.getLocales介绍

暂无

代码示例

代码示例来源:origin: org.simpleframework/simple

  1. /**
  2. * This is used to acquire the locales from the request header. The
  3. * locales are provided in the <code>Accept-Language</code> header.
  4. * This provides an indication as to the languages that the client
  5. * accepts. It provides the locales in preference order.
  6. *
  7. * @return this returns the locales preferred by the client
  8. */
  9. public List<Locale> getLocales() {
  10. return request.getLocales();
  11. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * This is used to acquire the locales from the request header. The
  3. * locales are provided in the <code>Accept-Language</code> header.
  4. * This provides an indication as to the languages that the client
  5. * accepts. It provides the locales in preference order.
  6. *
  7. * @return this returns the locales preferred by the client
  8. */
  9. public List<Locale> getLocales() {
  10. return request.getLocales();
  11. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * This is used to acquire the locales from the request header. The
  3. * locales are provided in the <code>Accept-Language</code> header.
  4. * This provides an indication as to the languages that the client
  5. * accepts. It provides the locales in preference order.
  6. *
  7. * @return this returns the locales preferred by the client
  8. */
  9. public List<Locale> getLocales() {
  10. return request.getLocales();
  11. }

代码示例来源:origin: restx/restx

  1. @Override
  2. public Locale getLocale() {
  3. if (request.getLocales() != null && !request.getLocales().isEmpty()) {
  4. return request.getLocales().get(0);
  5. }
  6. return Locale.getDefault();
  7. }

代码示例来源:origin: io.restx/restx-server-simple

  1. @Override
  2. public Locale getLocale() {
  3. if (request.getLocales() != null && !request.getLocales().isEmpty()) {
  4. return request.getLocales().get(0);
  5. }
  6. return Locale.getDefault();
  7. }

代码示例来源:origin: restx/restx

  1. @Override
  2. public ImmutableList<Locale> getLocales() {
  3. List<Locale> locales = request.getLocales();
  4. if (locales.isEmpty()) {
  5. return ImmutableList.of(Locale.getDefault());
  6. } else {
  7. return ImmutableList.copyOf(locales);
  8. }
  9. }

代码示例来源:origin: io.restx/restx-server-simple

  1. @Override
  2. public ImmutableList<Locale> getLocales() {
  3. List<Locale> locales = request.getLocales();
  4. if (locales.isEmpty()) {
  5. return ImmutableList.of(Locale.getDefault());
  6. } else {
  7. return ImmutableList.copyOf(locales);
  8. }
  9. }

相关文章