Uses of Class
org.apache.poi.poifs.property.Property
-
Packages that use Property Package Description org.apache.poi.poifs.filesystem filesystem package maps OLE 2 Compound document files to a more familiar filesystem interface.org.apache.poi.poifs.property property package contains high and low level Property structures for POIFS. -
-
Uses of Property in org.apache.poi.poifs.filesystem
Methods in org.apache.poi.poifs.filesystem that return Property Modifier and Type Method Description protected Property
EntryNode. getProperty()
grant access to the propertyConstructors in org.apache.poi.poifs.filesystem with parameters of type Property Constructor Description EntryNode(Property property, DirectoryNode parent)
create a DocumentNode. -
Uses of Property in org.apache.poi.poifs.property
Subclasses of Property in org.apache.poi.poifs.property Modifier and Type Class Description class
DirectoryProperty
Directory propertyclass
DocumentProperty
Trivial extension of Property for POIFSDocumentsclass
RootProperty
Root propertyMethods in org.apache.poi.poifs.property that return types with arguments of type Property Modifier and Type Method Description Iterator<Property>
DirectoryProperty. getChildren()
Get an iterator over the children of this Parent; all elements are instances of Property.Iterator<Property>
Parent. getChildren()
Get an iterator over the children of this Parent; all elements are instances of Property.Iterator<Property>
DirectoryProperty. iterator()
Get an iterator over the children of this Parent, alias forDirectoryProperty.getChildren()
which supports foreach useSpliterator<Property>
DirectoryProperty. spliterator()
Get a spliterator over the children of this Parent; all elements are instances of Property.Methods in org.apache.poi.poifs.property with parameters of type Property Modifier and Type Method Description void
DirectoryProperty. addChild(Property property)
Add a new child to the collection of childrenvoid
Parent. addChild(Property property)
Add a new child to the collection of childrenvoid
PropertyTable. addProperty(Property property)
Add a property to the list of properties we manageboolean
DirectoryProperty. changeName(Property property, String newName)
Change a Property's nameint
DirectoryProperty.PropertyComparator. compare(Property o1, Property o2)
compare method.boolean
DirectoryProperty. deleteChild(Property property)
Delete a Propertyvoid
PropertyTable. removeProperty(Property property)
Remove a property from the list of properties we manage
-