org.restlet.data.Status.isGlobalError()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(111)

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

Status.isGlobalError介绍

[英]Indicates if the status is a global error status, meaning "The server has definitive information about a particular user".
[中]指示状态是否为全局错误状态,这意味着“服务器具有关于特定用户的确定信息”。

代码示例

代码示例来源:origin: org.restlet.osgi/org.restlet

/**
 * Indicates if the status is a global error status, meaning "The server has
 * definitive information about a particular user".
 * 
 * @return True if the status is a global error status.
 */
public boolean isGlobalError() {
  return isGlobalError(getCode());
}

代码示例来源:origin: DeviceConnect/DeviceConnect-Android

/**
 * Indicates if the status is a global error status, meaning "The server has
 * definitive information about a particular user".
 * 
 * @return True if the status is a global error status.
 */
public boolean isGlobalError() {
  return isGlobalError(getCode());
}

代码示例来源:origin: org.restlet.osgi/org.restlet

/**
 * Indicates if the status is an error (client or server) status.
 * 
 * @param code
 *            The code of the status.
 * @return True if the status is an error (client or server) status.
 */
public static boolean isError(int code) {
  return isClientError(code) || isServerError(code)
      || isConnectorError(code) || isGlobalError(code);
}

相关文章