public enum SshDriver extends Enum<SshDriver>
Enum Constant and Description |
---|
APACHE
Use the Apache MINA sshd client from org.eclipse.jgit.ssh.apache.
|
JSCH
Default client: use JSch.
|
Modifier and Type | Method and Description |
---|---|
static SshDriver |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SshDriver[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SshDriver JSCH
public static final SshDriver APACHE
public static SshDriver[] values()
for (SshDriver c : SshDriver.values()) System.out.println(c);
public static SshDriver valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019 Eclipse JGit Project. All rights reserved.