Uses of Enum Class
com.atlassian.webresource.api.UrlMode
Packages that use UrlMode
Package
Description
-
Uses of UrlMode in com.atlassian.webresource.api
Methods in com.atlassian.webresource.api that return UrlModeModifier and TypeMethodDescriptionstatic UrlModeReturns the enum constant of this class with the specified name.static UrlMode[]UrlMode.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.atlassian.webresource.api with parameters of type UrlModeModifier and TypeMethodDescriptionWebResourceUrlProvider.getBaseUrl(UrlMode urlMode) Returns the base URL for this application in either relative or absolute format, depending on the value ofurlMode.WebResourceManager.getRequiredResources(UrlMode urlMode) This is the equivalent of callingWebResourceManager.getRequiredResources(UrlMode, WebResourceFilter)with the given url mode and a default filter that is dependent on the implementation.WebResourceManager.getRequiredResources(UrlMode urlMode, WebResourceFilter webResourceFilter) Returns the resource tags for the previously required resources called viaWebResourceManager.requireResource(String)that match the specified web resource filter.WebResourceManager.getResourceTags(String moduleCompleteKey, UrlMode urlMode) Returns the resource tags of the specified resource.WebResourceUrlProvider.getStaticPluginResourceUrl(com.atlassian.plugin.ModuleDescriptor<?> moduleDescriptor, String resourceName, UrlMode urlMode) A helper method to return a url for 'plugin' resources.WebResourceUrlProvider.getStaticPluginResourceUrl(String moduleCompleteKey, String resourceName, UrlMode urlMode) A helper method to return a url for 'plugin' resources.WebResourceUrlProvider.getStaticResourcePrefix(UrlMode urlMode) A helper method to return a prefix for 'system' static resources.WebResourceUrlProvider.getStaticResourcePrefix(String resourceCounter, UrlMode urlMode) A helper method to return a prefix for 'system' static resources.WebResourceUrlProvider.getStaticResourcePrefix(String contributedHash, String resourceCounter, UrlMode urlMode) A helper method to return a prefix for 'system' static resources.voidWebResourceManager.includeResources(Writer writer, UrlMode urlMode) This is the equivalent of callingWebResourceManager.includeResources(Writer, UrlMode, WebResourceFilter)with the given url mode and a default web resource filter that is dependent on the implementation.voidWebResourceManager.includeResources(Writer writer, UrlMode urlMode, WebResourceFilter webResourceFilter) Writes out the resource tags to the previously required resources called viaWebResourceManager.requireResource(String)for the specified resource type.voidWebResourceManager.includeResources(Iterable<String> moduleCompleteKeys, Writer writer, UrlMode urlMode) Writes out the resource tags for a specified set of required resources and their dependencies.voidWebResourceManager.requireResource(String moduleCompleteKey, Writer writer, UrlMode urlMode) Writes the resource tags of the specified resource to the writer. -
Uses of UrlMode in com.atlassian.webresource.api.assembler
Methods in com.atlassian.webresource.api.assembler with parameters of type UrlModeModifier and TypeMethodDescriptionvoidWebResourceSet.writeHtmlTags(Writer writer, UrlMode urlMode) Write the HTML tags for this object's resources to the writer.voidWebResourceSet.writeHtmlTags(Writer writer, UrlMode urlMode, Predicate<WebResource> predicate) Write the HTML tags for this object's resources to the writer.voidWebResourceSet.writePrefetchLinks(Writer writer, UrlMode urlMode) Write the HTML tags for non-data resources as prefetch links:<link rel="prefetch">. -
Uses of UrlMode in com.atlassian.webresource.api.assembler.resource
Methods in com.atlassian.webresource.api.assembler.resource with parameters of type UrlModeModifier and TypeMethodDescriptionPluginUrlResource.getStaticUrl(UrlMode urlMode) The resource's url.