PropertyCollection
Overview
PropertyCollection is a class in Aspose.3D FOSS for Java.
Inherits from: Iterable<Property>.
PropertyCollection.add adds the specified Property to the collection.
This class provides 7 methods for working with PropertyCollection objects in Java programs.
Available methods include: add, findProperty, get, iterator, remove, set, size.
All exported members are accessible to any Java application after installing the Aspose.3D FOSS for Java package.
Description
PropertyCollection is a class in the Aspose.3D FOSS library for Java that exposes 7 methods and 0 properties for programmatic use. It extends Iterable<Property>, inheriting shared functionality from its parent type.
Core capabilities include: Adds the specified property to the collection; removes the specified property from the collection; assigns the given value to the property with the specified name. These operations enable developers to integrate propertycollection functionality directly into Java applications.
Methods
| Signature | Description |
|---|---|
add(property: Property) | Adds the specified Property to the collection |
remove(property: Property) | Removes the specified Property from the collection |
findProperty(name: String) → Property | Returns the Property with the given name or null if not found |
get(name: String) → Object | Returns the value associated with the given property name |
set(name: String, value: Object) | Assigns the given value to the property with the specified name |
iterator() → java.util.Iterator<Property> | Provides an iterator over the Property objects in the collection |
size() → int | Returns the number of Property objects in the collection |