Java org.eclipse.jgit.transport URIish fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jgit.transport URIish fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jgit.transport URIish.

The text is from its open source code.

Constructor

URIish(String s)
Parse and construct an org.eclipse.jgit.transport.URIish from a string
URIish(URL u)
Construct a URIish from a standard URL.
URIish(URIish u)
URIish()
Create an empty, non-configured URI.

Method

booleanequals(Object obj)
StringgetHost()
Get host name part.
StringgetHumanishName()
Get the "humanish" part of the path.
StringgetPass()
Get password requested for transfer
StringgetPath()
Get path name component
intgetPort()
Get port number requested for transfer or -1 if not explicit
StringgetScheme()
Get protocol name
StringgetUser()
Get user name requested for transfer
booleanisRemote()
Whether this URI references a repository on another system.
URIishsetHost(String n)
Return a new URI matching this one, but with a different host.
URIishsetPass(String n)
Return a new URI matching this one, but with a different password.
URIishsetPath(String n)
Return a new URI matching this one, but with a different path.
URIishsetPort(int n)
Return a new URI matching this one, but with a different port.
URIishsetScheme(String n)
Return a new URI matching this one, but with a different scheme.
URIishsetUser(String n)
Return a new URI matching this one, but with a different user.
StringtoASCIIString()
Get the URI as an ASCII string.
StringtoPrivateASCIIString()
Convert the URI including password, formatted with only ASCII characters such that it will be valid for use over the network.
StringtoPrivateString()
Obtain the string form of the URI, with the password included.
StringtoString()