protected static enum AbstractFbBlob.BlobState extends java.lang.Enum<AbstractFbBlob.BlobState>
| Enum Constant and Description | 
|---|
| CLOSEDBlob is closed. | 
| DELAYED_OPENBlob is deferred open, the open request is delayed (only client-side open). | 
| NEWBlob is new and not yet opened. | 
| OPENBlob is open client-side and server-side. | 
| PENDING_OPENBlob is deferred open, and open request is pending (already sent or in send buffer, and response not yet
 processed). | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | isClosed() | 
| boolean | isDeferredOpen() | 
| boolean | isOpen() | 
| static AbstractFbBlob.BlobState | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static AbstractFbBlob.BlobState[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AbstractFbBlob.BlobState NEW
public static final AbstractFbBlob.BlobState DELAYED_OPEN
public static final AbstractFbBlob.BlobState PENDING_OPEN
public static final AbstractFbBlob.BlobState OPEN
public static final AbstractFbBlob.BlobState CLOSED
public static AbstractFbBlob.BlobState[] values()
for (AbstractFbBlob.BlobState c : AbstractFbBlob.BlobState.values()) System.out.println(c);
public static AbstractFbBlob.BlobState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic final boolean isOpen()
true if this state is an open blobpublic final boolean isClosed()
true if this state is a closed blob (including not yet opened)public final boolean isDeferredOpen()
true if this state is a deferred state (i.e. the DELAYED_OPEN and
 PENDING_OPEN states)Copyright © 2001-2025 Jaybird (Firebird JDBC) team. All rights reserved.