|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<QSsl.SslProtocol>
com.trolltech.qt.network.QSsl.SslProtocol
public static enum QSsl.SslProtocol
Describes the protocol of the cipher.
Enum Constant Summary | |
---|---|
AnyProtocol
The socket understands SSLv2, SSLv3, and TLSv1. |
|
SslV2
SSLv2 |
|
SslV3
SSLv3 - the default protocol. |
|
TlsV1
TLSv1 |
|
UnknownProtocol
The cipher's protocol cannot be determined. |
Method Summary | |
---|---|
static QSsl.SslProtocol |
resolve(int value)
|
int |
value()
This function should return an integer value for the enum values of the enumeration that implements this interface. |
static QSsl.SslProtocol |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QSsl.SslProtocol[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final QSsl.SslProtocol SslV3
SSLv3 - the default protocol.
public static final QSsl.SslProtocol SslV2
SSLv2
public static final QSsl.SslProtocol TlsV1
TLSv1
public static final QSsl.SslProtocol AnyProtocol
The socket understands SSLv2, SSLv3, and TLSv1. This value is used by QSslSocket only.
public static final QSsl.SslProtocol UnknownProtocol
The cipher's protocol cannot be determined.
Method Detail |
---|
public static final QSsl.SslProtocol[] values()
for(QSsl.SslProtocol c : QSsl.SslProtocol.values()) System.out.println(c);
public static QSsl.SslProtocol 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 namepublic int value()
QtEnumerator
value
in interface QtEnumerator
public static QSsl.SslProtocol resolve(int value)
|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |