Class CustomProperty
public class CustomProperty extends MutableProperty
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.
- Author:
- Rainer Klute <klute@rainer-klute.de>
-
Field Summary
-
Constructor Summary
Constructors Constructor Description CustomProperty()Creates an emptyCustomProperty.CustomProperty(Property property)Creates aCustomPropertywithout a name by copying the underlyingProperty' attributes.CustomProperty(Property property, java.lang.String name)Creates aCustomPropertywith a name. -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)Compares two properties.booleanequalsContents(java.lang.Object o)Compares two custom properties for equality.java.lang.StringgetName()Gets the property's name.inthashCode()voidsetName(java.lang.String name)Sets the property's name.Methods inherited from class org.docx4j.org.apache.poi.hpsf.MutableProperty
setID, setType, setValue, write
-
Constructor Details
-
CustomProperty
public CustomProperty()Creates an empty
CustomProperty. The set methods must be called to make it usable. -
CustomProperty
Creates a
CustomPropertywithout a name by copying the underlyingProperty' attributes.- Parameters:
property- the property to copy
-
CustomProperty
Creates a
CustomPropertywith a name.- Parameters:
property- This property's attributes are copied to the new custom property.name- The new custom property's name.
-
-
Method Details
-
getName
public java.lang.String getName()Gets the property's name.
- Returns:
- the property's name.
-
setName
public void setName(java.lang.String name)Sets the property's name.
- Parameters:
name- The name to set.
-
equalsContents
public boolean equalsContents(java.lang.Object o)Compares two custom properties for equality. The method returns
trueif all attributes of the two custom properties are equal.- Parameters:
o- The custom property to compare with.- Returns:
trueif both custom properties are equal, elsefalse.- See Also:
AbstractSet.equals(java.lang.Object)
-
hashCode
public int hashCode() -
equals
public boolean equals(java.lang.Object o)Description copied from class:PropertyCompares two properties.
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;
-