Package org.apache.poi.ddf
Class EscherPropertyMetaData
- java.lang.Object
-
- org.apache.poi.ddf.EscherPropertyMetaData
-
public class EscherPropertyMetaData extends java.lang.ObjectThis class stores the type and description of an escher property.
-
-
Field Summary
Fields Modifier and Type Field Description static byteTYPE_ARRAYstatic byteTYPE_BOOLEANstatic byteTYPE_RGBstatic byteTYPE_SHAPEPATHstatic byteTYPE_SIMPLEstatic byteTYPE_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.StringgetDescription()bytegetType()
-
-
-
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.
-
-