public static enum OleBlob.ContentType extends Enum<OleBlob.ContentType>
Enum Constant and Description |
---|
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).
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullCopyright © 2005–2024 OpenHMS. All rights reserved.