|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SshFailCause>
com.vhosting.netconf.transport.ssh.SshFailCause
public enum SshFailCause
This enum groups all the causes of failure are specific to the SSH-2 transport protocol.
Enum Constant Summary | |
---|---|
CAUSE_SSH_SESSION_TROUBLES
Cause of failure due to problems in SSH-2 session. |
|
CAUSE_SSH_SUBSYSTEM_TROUBLES
Cause of failure due to interface problems with the netconf SSH-2 subsystem. |
Method Summary | |
---|---|
static SshFailCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SshFailCause[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SshFailCause CAUSE_SSH_SESSION_TROUBLES
public static final SshFailCause CAUSE_SSH_SUBSYSTEM_TROUBLES
Method Detail |
---|
public static SshFailCause[] values()
for (SshFailCause c : SshFailCause.values()) System.out.println(c);
public static SshFailCause valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |