RawURL

object RawURL
class Object
trait Matchable
class Any
RawURL.type

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.

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.

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.