javax.net.ssl
Enum SSLEngineResult.Status

java.lang.Object
  extended by java.lang.Enum<SSLEngineResult.Status>
      extended by javax.net.ssl.SSLEngineResult.Status
All Implemented Interfaces:
Serializable, Comparable<SSLEngineResult.Status>
Enclosing class:
SSLEngineResult

public static enum SSLEngineResult.Status
extends Enum<SSLEngineResult.Status>

An enumeration of possible general states.


Enum Constant Summary
BUFFER_OVERFLOW
          There was not enough space for the output message.
BUFFER_UNDERFLOW
          There were not enough input bytes available to complete the operation.
CLOSED
          The connection is closed.
OK
          Okay.
 
Method Summary
static SSLEngineResult.Status valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SSLEngineResult.Status[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BUFFER_UNDERFLOW

public static final SSLEngineResult.Status BUFFER_UNDERFLOW
There were not enough input bytes available to complete the operation.


BUFFER_OVERFLOW

public static final SSLEngineResult.Status BUFFER_OVERFLOW
There was not enough space for the output message.


OK

public static final SSLEngineResult.Status OK
Okay. No error.


CLOSED

public static final SSLEngineResult.Status CLOSED
The connection is closed.

Method Detail

values

public static SSLEngineResult.Status[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SSLEngineResult.Status c : SSLEngineResult.Status.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SSLEngineResult.Status valueOf(String name)
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
NullPointerException - if the argument is null