Interface ResourceType


public interface ResourceType
Identifies a type of packaged resource. Packaged resources can be localized and are accessible from a public URL to be used for the user interface display.
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final ResourceType
    HTML document resource.
    static final ResourceType
    Icon resource.
    static final ResourceType
    Image file.
    static final ResourceType
    JavaScript resource.
    static final ResourceType
    Cascading Style Sheet (CSS) resource.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns true if the resources of this type are in the WEB-INF/ directory (that is, not directly accessible using HTTP protocol).
  • Field Details

    • HTML

      static final ResourceType HTML
      HTML document resource.
    • ICON

      static final ResourceType ICON
      Icon resource.
    • IMAGE

      static final ResourceType IMAGE
      Image file.
    • JSCRIPT

      static final ResourceType JSCRIPT
      JavaScript resource.
    • STYLESHEET

      static final ResourceType STYLESHEET
      Cascading Style Sheet (CSS) resource.
  • Method Details

    • isInternal

      boolean isInternal()
      Returns true if the resources of this type are in the WEB-INF/ directory (that is, not directly accessible using HTTP protocol).