Uses of Class
org.apache.sshd.sftp.client.SftpVersionSelector.NamedVersionSelector
-
Packages that use SftpVersionSelector.NamedVersionSelector Package Description org.apache.sshd.sftp.client -
-
Uses of SftpVersionSelector.NamedVersionSelector in org.apache.sshd.sftp.client
Fields in org.apache.sshd.sftp.client declared as SftpVersionSelector.NamedVersionSelector Modifier and Type Field Description static SftpVersionSelector.NamedVersionSelector
SftpVersionSelector. CURRENT
AnSftpVersionSelector
that returns the current versionstatic SftpVersionSelector.NamedVersionSelector
SftpVersionSelector. MAXIMUM
AnSftpVersionSelector
that returns the maximum available versionstatic SftpVersionSelector.NamedVersionSelector
SftpVersionSelector. MINIMUM
AnSftpVersionSelector
that returns the minimum available versionMethods in org.apache.sshd.sftp.client that return SftpVersionSelector.NamedVersionSelector Modifier and Type Method Description static SftpVersionSelector.NamedVersionSelector
SftpVersionSelector. fixedVersionSelector(int version)
Creates a selector the always returns the requested (fixed version) regardless of what the current or reported available versions are.static SftpVersionSelector.NamedVersionSelector
SftpVersionSelector. preferredVersionSelector(int... preferred)
Selects a version in order of preference - if none of the preferred versions is listed as available then an exception is thrown when theSftpVersionSelector.selectVersion(ClientSession, boolean, int, List)
method is invokedstatic SftpVersionSelector.NamedVersionSelector
SftpVersionSelector. preferredVersionSelector(Iterable<? extends Number> preferred)
Selects a version in order of preference - if none of the preferred versions is listed as available then an exception is thrown when theSftpVersionSelector.selectVersion(ClientSession, boolean, int, List)
method is invokedstatic SftpVersionSelector.NamedVersionSelector
SftpVersionSelector. resolveVersionSelector(String selector)
Parses the input string to see if it matches one of the "known" selectors names (case insensitive).
-