javax.faces.application.Resource.toString()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(2.4k)|赞(0)|评价(0)|浏览(98)

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

Resource.toString介绍

[英]Call through to #getRequestPath and return the result.
[中]调用#getRequestPath并返回结果。

代码示例

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

@Override
  public String toString() {
    return getWrapped().toString();
  }
}

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

if (resource != null && !"RES_NOT_FOUND".equals(resource.toString())) {
  inputStream = resource.getInputStream();
  contentType = resource.getContentType();

代码示例来源:origin: com.liferay.faces/liferay-faces-bridge-impl

/**
 * Since this method is not supplied by the {@link ResourceWrapper} class it has to be implemented here.
 */
@Override
public String toString() {
  return wrappedResource.toString();
}

代码示例来源:origin: liferay/liferay-faces

/**
 * Since this method is not supplied by the {@link ResourceWrapper} class it has to be implemented here.
 */
@Override
public String toString() {
  return wrappedResource.toString();
}

代码示例来源:origin: com.liferay.faces/liferay-faces-bridge-impl

/**
 * Since this method is not supplied by the {@link ResourceWrapper} class it has to be implemented here.
 */
@Override
public String toString() {
  return wrappedResource.toString();
}

代码示例来源:origin: liferay/liferay-faces

/**
 * Since this method is not supplied by the {@link ResourceWrapper} class it has to be implemented here.
 */
@Override
public String toString() {
  return wrappedResource.toString();
}

代码示例来源:origin: org.primefaces/primefaces

@Override
  public String toString() {
    return getWrapped().toString();
  }
}

代码示例来源:origin: com.liferay.faces/com.liferay.faces.util

/**
 * Since this method is not supplied by the {@link ResourceWrapper} class it has to be implemented here.
 */
@Override
public String toString() {
  return getWrapped().toString();
}

代码示例来源:origin: org.primefaces.extensions/primefaces-extensions

@Override
  public String toString() {
    return getWrapped().toString();
  }
}

代码示例来源:origin: org.apache.deltaspike.modules/deltaspike-jsf-module-impl-ee6

@Override
  public String toString()
  {
    return getWrapped().toString();
  }
}

代码示例来源:origin: org.apache.deltaspike.modules/deltaspike-jsf-module-impl

@Override
  public String toString()
  {
    return getWrapped().toString();
  }
}

代码示例来源:origin: org.primefaces/primefaces

if (resource != null && !"RES_NOT_FOUND".equals(resource.toString())) {
  inputStream = resource.getInputStream();
  contentType = resource.getContentType();

相关文章