Package org.apache.poi.ddf
Enum EscherRecordTypes
- java.lang.Object
-
- java.lang.Enum<EscherRecordTypes>
-
- org.apache.poi.ddf.EscherRecordTypes
-
- All Implemented Interfaces:
Serializable
,Comparable<EscherRecordTypes>
public enum EscherRecordTypes extends Enum<EscherRecordTypes>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALIGN_RULE
ANCHOR
ARC_RULE
BLIP_DIB
BLIP_EMF
BLIP_END
BLIP_JPEG
BLIP_PICT
BLIP_PNG
BLIP_START
BLIP_TIFF
BLIP_WMF
BSE
BSTORE_CONTAINER
Container
for all BLIPs (binary large image or picture) that are used in the drawings associated with the parentDGG_CONTAINER
.CALLOUT_RULE
CHILD_ANCHOR
CLIENT_ANCHOR
CLIENT_DATA
CLIENT_RULE
CLIENT_TEXTBOX
CLSID
COLOR_MRU
COLOR_SCHEME
CONNECTOR_RULE
DELETED_PSPL
DG
DG_CONTAINER
Container
for all the file records for the objects in a drawing.DGG
DGG_CONTAINER
Container
for all OfficeArt file records that contain document-wide data.OLE_OBJECT
OPT
REGROUP_ITEMS
SELECTION
SOLVER_CONTAINER
SP
SP_CONTAINER
SPGR
SPGR_CONTAINER
SPLIT_MENU_COLORS
TEXTBOX
UNKNOWN
USER_DEFINED
-
Field Summary
Fields Modifier and Type Field Description Supplier<? extends EscherRecord>
constructor
String
description
String
recordName
short
typeID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EscherRecordTypes
forTypeID(int typeID)
static EscherRecordTypes
valueOf(String name)
Returns the enum constant of this type with the specified name.static EscherRecordTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DGG_CONTAINER
public static final EscherRecordTypes DGG_CONTAINER
Container
for all OfficeArt file records that contain document-wide data.Contains, amongst others children, a
BSTORE_CONTAINER
.Referred to as an
OfficeArtDggContainer
in[MS-ODRAW].pdf v20201117
.
-
BSTORE_CONTAINER
public static final EscherRecordTypes BSTORE_CONTAINER
Container
for all BLIPs (binary large image or picture) that are used in the drawings associated with the parentDGG_CONTAINER
.Contains a list of
EscherBSERecord
s.Referred to as an
OfficeArtBStoreContainer
in[MS-ODRAW].pdf v20201117
.
-
DG_CONTAINER
public static final EscherRecordTypes DG_CONTAINER
Container
for all the file records for the objects in a drawing.Referred to as an
OfficeArtDgContainer
in[MS-ODRAW].pdf v20201117
.
-
SPGR_CONTAINER
public static final EscherRecordTypes SPGR_CONTAINER
-
SP_CONTAINER
public static final EscherRecordTypes SP_CONTAINER
-
SOLVER_CONTAINER
public static final EscherRecordTypes SOLVER_CONTAINER
-
DGG
public static final EscherRecordTypes DGG
-
BSE
public static final EscherRecordTypes BSE
-
DG
public static final EscherRecordTypes DG
-
SPGR
public static final EscherRecordTypes SPGR
-
SP
public static final EscherRecordTypes SP
-
OPT
public static final EscherRecordTypes OPT
-
TEXTBOX
public static final EscherRecordTypes TEXTBOX
-
CLIENT_TEXTBOX
public static final EscherRecordTypes CLIENT_TEXTBOX
-
ANCHOR
public static final EscherRecordTypes ANCHOR
-
CHILD_ANCHOR
public static final EscherRecordTypes CHILD_ANCHOR
-
CLIENT_ANCHOR
public static final EscherRecordTypes CLIENT_ANCHOR
-
CLIENT_DATA
public static final EscherRecordTypes CLIENT_DATA
-
CONNECTOR_RULE
public static final EscherRecordTypes CONNECTOR_RULE
-
ALIGN_RULE
public static final EscherRecordTypes ALIGN_RULE
-
ARC_RULE
public static final EscherRecordTypes ARC_RULE
-
CLIENT_RULE
public static final EscherRecordTypes CLIENT_RULE
-
CLSID
public static final EscherRecordTypes CLSID
-
CALLOUT_RULE
public static final EscherRecordTypes CALLOUT_RULE
-
BLIP_START
public static final EscherRecordTypes BLIP_START
-
BLIP_EMF
public static final EscherRecordTypes BLIP_EMF
-
BLIP_WMF
public static final EscherRecordTypes BLIP_WMF
-
BLIP_PICT
public static final EscherRecordTypes BLIP_PICT
-
BLIP_JPEG
public static final EscherRecordTypes BLIP_JPEG
-
BLIP_PNG
public static final EscherRecordTypes BLIP_PNG
-
BLIP_DIB
public static final EscherRecordTypes BLIP_DIB
-
BLIP_TIFF
public static final EscherRecordTypes BLIP_TIFF
-
BLIP_END
public static final EscherRecordTypes BLIP_END
-
REGROUP_ITEMS
public static final EscherRecordTypes REGROUP_ITEMS
-
SELECTION
public static final EscherRecordTypes SELECTION
-
COLOR_MRU
public static final EscherRecordTypes COLOR_MRU
-
DELETED_PSPL
public static final EscherRecordTypes DELETED_PSPL
-
SPLIT_MENU_COLORS
public static final EscherRecordTypes SPLIT_MENU_COLORS
-
OLE_OBJECT
public static final EscherRecordTypes OLE_OBJECT
-
COLOR_SCHEME
public static final EscherRecordTypes COLOR_SCHEME
-
USER_DEFINED
public static final EscherRecordTypes USER_DEFINED
-
UNKNOWN
public static final EscherRecordTypes UNKNOWN
-
-
Field Detail
-
typeID
public final short typeID
-
recordName
public final String recordName
-
description
public final String description
-
constructor
public final Supplier<? extends EscherRecord> constructor
-
-
Method Detail
-
values
public static EscherRecordTypes[] 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 (EscherRecordTypes c : EscherRecordTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EscherRecordTypes 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 nameNullPointerException
- if the argument is null
-
forTypeID
public static EscherRecordTypes forTypeID(int typeID)
-
-