public static enum FtpSession.Prot extends Enum<FtpSession.Prot>
Enum Constant and Description |
---|
C
Clear
|
E
Confidential(SSL protocol only)
|
P
Private
|
S
Safe(SSL protocol only)
|
Modifier and Type | Method and Description |
---|---|
static FtpSession.Prot |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FtpSession.Prot[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FtpSession.Prot C
public static final FtpSession.Prot S
public static final FtpSession.Prot E
public static final FtpSession.Prot P
public static FtpSession.Prot[] values()
for (FtpSession.Prot c : FtpSession.Prot.values()) System.out.println(c);
public static FtpSession.Prot 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 © 2023 Frank!Framework. All rights reserved.