Package org.apache.poi.poifs.property
Class DirectoryProperty
- java.lang.Object
-
- org.apache.poi.poifs.property.Property
-
- org.apache.poi.poifs.property.DirectoryProperty
-
- All Implemented Interfaces:
java.lang.Iterable<Property>
,POIFSViewable
,Child
,Parent
- Direct Known Subclasses:
RootProperty
public class DirectoryProperty extends Property implements Parent, java.lang.Iterable<Property>
Directory property
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DirectoryProperty.PropertyComparator
-
Constructor Summary
Constructors Constructor Description DirectoryProperty(java.lang.String name)
Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addChild(Property property)
Add a new child to the collection of childrenboolean
changeName(Property property, java.lang.String newName)
Change a Property's nameboolean
deleteChild(Property property)
Delete a Propertyjava.util.Iterator<Property>
getChildren()
Get an iterator over the children of this Parent; all elements are instances of Property.boolean
isDirectory()
java.util.Iterator<Property>
iterator()
Get an iterator over the children of this Parent, alias forgetChildren()
which supports foreach use-
Methods inherited from class org.apache.poi.poifs.property.Property
getName, getNextChild, getPreviousChild, getShortDescription, getSize, getStartBlock, getStorageClsid, getViewableArray, getViewableIterator, isSmall, preferArray, setNextChild, setPreviousChild, setStartBlock, setStorageClsid, shouldUseSmallBlocks, writeData
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.poi.poifs.property.Child
getNextChild, getPreviousChild
-
Methods inherited from interface org.apache.poi.poifs.property.Parent
setNextChild, setPreviousChild
-
-
-
-
Method Detail
-
changeName
public boolean changeName(Property property, java.lang.String newName)
Change a Property's name- Parameters:
property
- the Property whose name is being changednewName
- the new name for the Property- Returns:
- true if the name change could be made, else false
-
deleteChild
public boolean deleteChild(Property property)
Delete a Property- Parameters:
property
- the Property being deleted- Returns:
- true if the Property could be deleted, else false
-
isDirectory
public boolean isDirectory()
- Specified by:
isDirectory
in classProperty
- Returns:
- true if a directory type Property
-
getChildren
public java.util.Iterator<Property> getChildren()
Get an iterator over the children of this Parent; all elements are instances of Property.- Specified by:
getChildren
in interfaceParent
- Returns:
- Iterator of children; may refer to an empty collection
-
iterator
public java.util.Iterator<Property> iterator()
Get an iterator over the children of this Parent, alias forgetChildren()
which supports foreach use- Specified by:
iterator
in interfacejava.lang.Iterable<Property>
-
addChild
public void addChild(Property property) throws java.io.IOException
Add a new child to the collection of children
-
-