RawURL

sbt.internal.inc.classpath.RawURL
object RawURL

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
RawURL.type

Members list

Value members

Concrete methods

def apply(file: String, value: String): URL

Constructs a URL with scheme raw and path file that will return the bytes for value in the platform default encoding when a connection to the URL is opened.

Constructs a URL with scheme raw and path file that will return the bytes for value in the platform default encoding when a connection to the URL is opened.

Attributes

def apply(file: String, value: Array[Byte]): URL

Constructs a URL with scheme raw and path file that will return the bytes value when a connection to the URL is opened.

Constructs a URL with scheme raw and path file that will return the bytes value when a connection to the URL is opened.

Attributes

def apply(file: String)(value: => InputStream): URL

Constructs a URL with scheme raw and path file that will use value to construct the InputStream used when a connection to the URL is opened.

Constructs a URL with scheme raw and path file that will use value to construct the InputStream used when a connection to the URL is opened.

Attributes