Uses of Class
org.apache.poi.hpsf.Property
-
Packages that use Property Package Description org.apache.poi.hpsf Processes streams in the Horrible Property Set Format (HPSF) in POI filesystems. -
-
Uses of Property in org.apache.poi.hpsf
Subclasses of Property in org.apache.poi.hpsf Modifier and Type Class Description class
CustomProperty
This class represents custom properties in the document summary information stream.Methods in org.apache.poi.hpsf that return Property Modifier and Type Method Description Property[]
PropertySet. getProperties()
Convenience method returning theProperty
array contained in this property set.Property[]
Section. getProperties()
Returns this section's properties.Methods in org.apache.poi.hpsf with parameters of type Property Modifier and Type Method Description void
Section. setProperties(Property[] properties)
Sets this section's properties.void
Section. setProperty(Property p)
Sets a property.Constructors in org.apache.poi.hpsf with parameters of type Property Constructor Description CustomProperty(Property property)
Creates aCustomProperty
without a name by copying the underlyingProperty
' attributes.CustomProperty(Property property, String name)
Creates aCustomProperty
with a name.Property(Property p)
Creates aProperty
as a copy of an existingProperty
.
-