com.aspose.words
Class DocumentProperties
java.lang.Object
com.aspose.words.DocumentProperties
- All Implemented Interfaces:
- java.lang.Iterable
- Direct Known Subclasses:
- BuiltInDocumentProperties, CustomDocumentProperties
public abstract class DocumentProperties
- extends java.lang.Object
Base class for BuiltInDocumentProperties and CustomDocumentProperties collections.
The names of the properties are case-insensitive.
The properties in the collection are sorted alphabetically by name.
- See Also:
- BuiltInDocumentProperties, CustomDocumentProperties
Method Summary |
void | clear() | |
Removes all properties from the collection.
|
boolean | contains(java.lang.String name) | |
Returns true if a property with the specified name exists in the collection.
|
int | indexOf(java.lang.String name) | |
Gets the index of a property by name.
|
java.util.Iterator | iterator() | |
Returns an iterator object that can be used to iterate over all items in the collection.
|
void | remove(java.lang.String name) | |
Removes a property with the specified name from the collection.
|
void | removeAt(int index) | |
Removes a property at the specified index.
|
Property Getters/Setters Detail |
getCount | |
public int getCount()
|
-
Gets number of items in the collection.
-
Returns a DocumentProperty object by the name of the property.
Returns null if a property with the specified name is not found.
- Parameters:
name
- The case-insensitive name of the property to retrieve.
-
Returns a DocumentProperty object by index.
Note: In Java this method is slow because iterates over all nodes.
- Parameters:
index
- Zero-based index of the DocumentProperty to retrieve.
iterator | |
public java.util.Iterator iterator() |
-
Returns an iterator object that can be used to iterate over all items in the collection.
contains | |
public boolean contains(java.lang.String name) |
-
Returns true if a property with the specified name exists in the collection.
- Parameters:
name
- The case-insensitive name of the property.
- Returns:
- True if the property exists in the collection; false otherwise.
indexOf | |
public int indexOf(java.lang.String name) |
-
Gets the index of a property by name.
Note: In Java this method is slow because iterates over all nodes.
- Parameters:
name
- The case-insensitive name of the property.
- Returns:
- The zero based index. Negative value if not found.
remove | |
public void remove(java.lang.String name) |
-
Removes a property with the specified name from the collection.
- Parameters:
name
- The case-insensitive name of the property.
removeAt | |
public void removeAt(int index) |
-
Removes a property at the specified index.
Note: In Java this method is slow because iterates over all nodes.
- Parameters:
index
- The zero based index.
clear | |
public void clear() |
-
Removes all properties from the collection.
See Also:
Wiki - the home page for the Aspose.Words Product Documentation that includes Programmer's Guide, Knowledge Base and other articles.
Aspose.Words Support Forum - our preferred method of support.
Aspose.Words Team - contact Aspose.Words Team.