|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<OleBlob.ContentType>
com.healthmarketscience.jackcess.util.OleBlob.ContentType
public static enum OleBlob.ContentType
Enum describing the types of blob contents which are currently supported/understood
| Enum Constant Summary | |
|---|---|
COMPOUND_STORAGE
the blob contents are a complex embedded data known as compound storage (aka OLE2). |
|
LINK
the blob contents are a link (file path) to some external content. |
|
OTHER
the top-level blob wrapper is understood, but the nested blob contents are unknown, probably just some embedded content. |
|
SIMPLE_PACKAGE
the blob contents are a simple wrapper around some embedded content and related file names/paths. |
|
UNKNOWN
the top-level blob wrapper is not understood (this may not be a valid ole instance). |
|
| Method Summary | |
|---|---|
static OleBlob.ContentType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static OleBlob.ContentType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final OleBlob.ContentType LINK
public static final OleBlob.ContentType SIMPLE_PACKAGE
public static final OleBlob.ContentType COMPOUND_STORAGE
OTHER.
public static final OleBlob.ContentType OTHER
public static final OleBlob.ContentType UNKNOWN
| Method Detail |
|---|
public static OleBlob.ContentType[] values()
for (OleBlob.ContentType c : OleBlob.ContentType.values()) System.out.println(c);
public static OleBlob.ContentType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||