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.Status

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

Class Overview

The enum describing the result of the SSLEngine operation.

Summary

Enum Values
SSLEngineResult.Status   BUFFER_OVERFLOW  The size of the destination buffer is too small to hold the result of the current operation. 
SSLEngineResult.Status   BUFFER_UNDERFLOW  There were not enough bytes available in the source buffer to complete the current operation. 
SSLEngineResult.Status   CLOSED  The operation closed this side of the communication or was already closed. 
SSLEngineResult.Status   OK  The operation completed successfully. 
Public Methods
static SSLEngineResult.Status valueOf ( String name)
final static Status[] 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.Status BUFFER_OVERFLOW

Added in API level 1

The size of the destination buffer is too small to hold the result of the current operation.

public static final SSLEngineResult.Status BUFFER_UNDERFLOW

Added in API level 1

There were not enough bytes available in the source buffer to complete the current operation.

public static final SSLEngineResult.Status CLOSED

Added in API level 1

The operation closed this side of the communication or was already closed.

public static final SSLEngineResult.Status OK

Added in API level 1

The operation completed successfully.

Public Methods

public static SSLEngineResult.Status valueOf ( String name)

Added in API level 1

public static final Status[] values ()

Added in API level 1