Package org.apache.poi.ddf
Class EscherPropertyMetaData
- java.lang.Object
-
- org.apache.poi.ddf.EscherPropertyMetaData
-
public class EscherPropertyMetaData extends 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(String description)
EscherPropertyMetaData(String description, byte type)
-
-
-
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(String description)
- Parameters:
description
- The description of the escher property.
-
EscherPropertyMetaData
public EscherPropertyMetaData(String description, byte type)
- Parameters:
description
- The description of the escher property.type
- The type of the property.
-
-
Method Detail
-
getDescription
public String getDescription()
-
getType
public byte getType()
-
-