to top
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

The handshake is finished.

public static final SSLEngineResult.HandshakeStatus NEED_TASK

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

public static final SSLEngineResult.HandshakeStatus NEED_UNWRAP

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

public static final SSLEngineResult.HandshakeStatus NEED_WRAP

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

public static final SSLEngineResult.HandshakeStatus NOT_HANDSHAKING

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

No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.