Tabnine Logo
UriBuilder.scheme
Code IndexAdd Tabnine to your IDE (free)

How to use
scheme
method
in
de.schlichtherle.truezip.util.UriBuilder

Best Java code snippets using de.schlichtherle.truezip.util.UriBuilder.scheme (Showing top 5 results out of 315)

origin: de.schlichtherle.truezip/truezip-path

@Override
public URI toUri() {
  URI n = getName();
  String s = n.getScheme();
  return new UriBuilder(getAddress().toHierarchicalUri())
      .scheme(null != s ? s : TFileSystemProvider.get(n).getScheme())
      .toUri();
}
origin: de.schlichtherle.truezip/truezip-path

this.root = new FsPath(
    new UriBuilder()
      .scheme(pu.getScheme())
      .authority(ma)
      .path(p)
origin: de.schlichtherle.truezip/truezip-kernel

@Test
public void testClear2() {
  builder .uri(URI.create("scheme://authority/path?query#fragment"))
      .scheme(null)
      .authority(null)
      .path(null)
      .query(null)
      .fragment(null);
  testDefaults();
}
origin: de.schlichtherle.truezip/truezip-kernel

.scheme(test[0])
.authority(test[1])
.path(test[2])
origin: de.schlichtherle.truezip/truezip-kernel

.scheme(test[1])
.authority(test[2])
.path(test[3])
de.schlichtherle.truezip.utilUriBuilderscheme

Popular methods of UriBuilder

  • <init>
  • getUri
  • path
  • authority
  • query
  • toUri
  • clear
  • fragment
  • getAuthority
  • getFragment
  • getPath
  • getQuery
  • getPath,
  • getQuery,
  • getScheme,
  • getString,
  • setAuthority,
  • setUri,
  • toString,
  • uri

Popular in Java

  • Running tasks concurrently on multiple threads
  • getResourceAsStream (ClassLoader)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • onCreateOptionsMenu (Activity)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • ImageIO (javax.imageio)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now