|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.poi.hpsf.Property org.apache.poi.hpsf.MutableProperty org.apache.poi.hpsf.CustomProperty
public class CustomProperty
This class represents custom properties in the document summary
information stream. The difference to normal properties is that custom
properties have an optional name. If the name is not null
it
will be maintained in the section's dictionary.
Field Summary |
---|
Fields inherited from class org.apache.poi.hpsf.Property |
---|
DEFAULT_CODEPAGE |
Constructor Summary | |
---|---|
CustomProperty()
Creates an empty CustomProperty . |
|
CustomProperty(Property property)
Creates a CustomProperty without a name by copying the
underlying Property ' attributes. |
|
CustomProperty(Property property,
java.lang.String name)
Creates a CustomProperty with a name. |
Method Summary | |
---|---|
boolean |
equals(java.lang.Object o)
Compares two properties. |
boolean |
equalsContents(java.lang.Object o)
Compares two custom properties for equality. |
java.lang.String |
getName()
Gets the property's name. |
int |
hashCode()
|
void |
setName(java.lang.String name)
Sets the property's name. |
Methods inherited from class org.apache.poi.hpsf.Property |
---|
getID, getSize, getType, getValue, setID, setType, setValue, toString, toString, write |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public CustomProperty()
CustomProperty
. The set methods must be
called to make it usable.
public CustomProperty(Property property)
CustomProperty
without a name by copying the
underlying Property
' attributes.
property
- the property to copypublic CustomProperty(Property property, java.lang.String name)
CustomProperty
with a name.
property
- This property's attributes are copied to the new custom
property.name
- The new custom property's name.Method Detail |
---|
public java.lang.String getName()
public void setName(java.lang.String name)
name
- The name to set.public boolean equalsContents(java.lang.Object o)
true
if all attributes of the two custom properties are
equal.
o
- The custom property to compare with.
true
if both custom properties are equal, else
false
.AbstractSet.equals(java.lang.Object)
public int hashCode()
hashCode
in class Property
AbstractSet.hashCode()
public boolean equals(java.lang.Object o)
Property
Please beware that a property with ID == 0 is a special case: It does not have a type, and its value is the section's dictionary. Another special case are strings: Two properties may have the different types Variant.VT_LPSTR and Variant.VT_LPWSTR;
equals
in class Property
Object.equals(java.lang.Object)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |