public final enum

ClientInfoStatus

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ java.sql.ClientInfoStatus

Class Overview

Enumeration for status of the reason that a property could not be set via a call to Connection.setClientInfo

Summary

Enum Values
ClientInfoStatus  REASON_UNKNOWN  The client info property could not be set for some unknown reason 
ClientInfoStatus  REASON_UNKNOWN_PROPERTY  The client info property name specified was not a recognized property name. 
ClientInfoStatus  REASON_VALUE_INVALID  The value specified for the client info property was not valid. 
ClientInfoStatus  REASON_VALUE_TRUNCATED  The value specified for the client info property was too large. 
Public Methods
static ClientInfoStatus valueOf(String name)
final static ClientInfoStatus[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ClientInfoStatus REASON_UNKNOWN

The client info property could not be set for some unknown reason

public static final ClientInfoStatus REASON_UNKNOWN_PROPERTY

The client info property name specified was not a recognized property name.

public static final ClientInfoStatus REASON_VALUE_INVALID

The value specified for the client info property was not valid.

public static final ClientInfoStatus REASON_VALUE_TRUNCATED

The value specified for the client info property was too large.

Public Methods

public static ClientInfoStatus valueOf (String name)

public static final ClientInfoStatus[] values ()