org.apache.http.impl.nio.reactor
Enum SSLMode
java.lang.Object
java.lang.Enum<SSLMode>
org.apache.http.impl.nio.reactor.SSLMode
- All Implemented Interfaces:
- Serializable, Comparable<SSLMode>
Deprecated. (4.2)
@Deprecated
public enum SSLMode
- extends Enum<SSLMode>
- Since:
- 4.0
Method Summary |
static SSLMode |
valueOf(String name)
Deprecated. Returns the enum constant of this type with the specified name. |
static SSLMode[] |
values()
Deprecated. Returns an array containing the constants of this enum type, in
the order they're declared. |
CLIENT
public static final SSLMode CLIENT
- Deprecated.
SERVER
public static final SSLMode SERVER
- Deprecated.
values
public static final SSLMode[] values()
- Deprecated.
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(SSLMode c : SSLMode.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static SSLMode valueOf(String name)
- Deprecated.
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
Copyright © 2005-2013 The Apache Software Foundation. All Rights Reserved.