Package org.apache.poi.ddf
Class EscherPropertyMetaData
- java.lang.Object
-
- org.apache.poi.ddf.EscherPropertyMetaData
-
public class EscherPropertyMetaData extends java.lang.Object
This class stores the type and description of an escher property.
-
-
Field Summary
Fields Modifier and Type Field Description static byte
TYPE_ARRAY
static byte
TYPE_BOOLEAN
static byte
TYPE_RGB
static byte
TYPE_SHAPEPATH
static byte
TYPE_SIMPLE
static byte
TYPE_UNKNOWN
-
Constructor Summary
Constructors Constructor Description EscherPropertyMetaData(java.lang.String description)
EscherPropertyMetaData(java.lang.String description, byte type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
byte
getType()
-
-
-
Field Detail
-
TYPE_UNKNOWN
public static final byte TYPE_UNKNOWN
- See Also:
- Constant Field Values
-
TYPE_BOOLEAN
public static final byte TYPE_BOOLEAN
- See Also:
- Constant Field Values
-
TYPE_RGB
public static final byte TYPE_RGB
- See Also:
- Constant Field Values
-
TYPE_SHAPEPATH
public static final byte TYPE_SHAPEPATH
- See Also:
- Constant Field Values
-
TYPE_SIMPLE
public static final byte TYPE_SIMPLE
- See Also:
- Constant Field Values
-
TYPE_ARRAY
public static final byte TYPE_ARRAY
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
EscherPropertyMetaData
public EscherPropertyMetaData(java.lang.String description)
- Parameters:
description
- The description of the escher property.
-
EscherPropertyMetaData
public EscherPropertyMetaData(java.lang.String description, byte type)
- Parameters:
description
- The description of the escher property.type
- The type of the property.
-
-