Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static final enum

SSLEngineResult.HandshakeStatus

extends Enum <E extends  Enum <E>>
java.lang.Object
   ↳ java.lang.Enum <E extends  java.lang.Enum <E>>
     ↳ javax.net.ssl.SSLEngineResult.HandshakeStatus

Class Overview

The enum describing the state of the current handshake.

Summary

Enum Values
SSLEngineResult.HandshakeStatus   FINISHED  The handshake is finished. 
SSLEngineResult.HandshakeStatus   NEED_TASK  The results of one (or more) delegated tasks are needed to continue the handshake. 
SSLEngineResult.HandshakeStatus   NEED_UNWRAP  The engine needs to receive data from the remote side to continue the handshake. 
SSLEngineResult.HandshakeStatus   NEED_WRAP  The engine must send data to the remote side to continue the handshake. 
SSLEngineResult.HandshakeStatus   NOT_HANDSHAKING  No handshake in progress. 
Public Methods
static SSLEngineResult.HandshakeStatus valueOf ( String name)
final static HandshakeStatus[] values ()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final SSLEngineResult.HandshakeStatus FINISHED

Added in API level 1

The handshake is finished.

public static final SSLEngineResult.HandshakeStatus NEED_TASK

Added in API level 1

The results of one (or more) delegated tasks are needed to continue the handshake.

public static final SSLEngineResult.HandshakeStatus NEED_UNWRAP

Added in API level 1

The engine needs to receive data from the remote side to continue the handshake.

public static final SSLEngineResult.HandshakeStatus NEED_WRAP

Added in API level 1

The engine must send data to the remote side to continue the handshake.

public static final SSLEngineResult.HandshakeStatus NOT_HANDSHAKING

Added in API level 1

No handshake in progress.

Public Methods

public static SSLEngineResult.HandshakeStatus valueOf ( String name)

Added in API level 1

public static final HandshakeStatus[] values ()

Added in API level 1