Class ByteArrayResourceDescriptor

    • Constructor Detail

      • ByteArrayResourceDescriptor

        public ByteArrayResourceDescriptor​(URI uri,
                                           byte[] data)
        Creates a new resource descriptor for the given URI with the given data.
        Parameters:
        uri - URI of the resource.
        data - Data of the resource.
      • ByteArrayResourceDescriptor

        public ByteArrayResourceDescriptor​(URI uri,
                                           byte[] data,
                                           Charset charset)
        Creates a new resource descriptor for the given URI with the given data.
        Parameters:
        uri - URI of the resource.
        data - Data of the resource.
        charset - Charset for plain text data, use null for binary data.
      • ByteArrayResourceDescriptor

        public ByteArrayResourceDescriptor​(URI uri,
                                           String string,
                                           Charset charset)
        Creates a new resource descriptor for the given URI with the given data.
        Parameters:
        uri - URI of the resource.
        string - String with the data.
        charset - The charset to use for converting the string to bytes.
    • Method Detail

      • getAbsoluteUri

        public URI getAbsoluteUri()
        Description copied from interface: IResourceDescriptor
        Gets the absolute URI that identifies this resource. The URI should be unique for each resource. If there are different versions of the same resource, they should have different URIs, e.g. by including a version number in the URI. The URI is not used to access the binary data, but may be used e.g. for caching purposes.

        The URI must be unique globally, i.e. also across different plugins. It is recommended to use a URI scheme that is unlikely to be used by other plugins, e.g. by including the Maven group and artifact ID.

        It is an error for this method to return a URI where URI.isAbsolute() yields false.

        Specified by:
        getAbsoluteUri in interface IResourceDescriptor
        Returns:
        An absolute URI that identifies this resource.
      • getCharset

        public Charset getCharset()
        Specified by:
        getCharset in interface IResourceDescriptor
        Returns:
        When this resource is a plain text resource: the charset or encoding of the text. Defaults to UTF_8.
      • fromString

        public static IResourceDescriptor fromString​(URI uri,
                                                     String data,
                                                     Charset charset)
        Creates a new resource descriptor for the given URI with the given data.
        Parameters:
        uri - URI of the resource.
        data - Data of the resource.
        charset - Encoding to use for reading the string's bytes.
        Returns:
        A resource descriptor for the given data.