A3DObject
Overview
A3DObject is a class in Aspose.3D FOSS for Java.
Inherits from: INamedObject.
A3DObject.A3DObject creates an object with an empty name.
This class provides 8 methods for working with A3DObject objects in Java programs.
Available methods include: A3DObject, findProperty, getName, getProperties, getProperty, removeProperty, setName, setProperty.
All exported members are accessible to any Java application after installing the Aspose.3D FOSS for Java package.
Properties: name, properties.
Description
A3DObject is a class in the Aspose.3D FOSS library for Java that exposes 8 methods and 2 properties for programmatic use. It extends INamedObject, inheriting shared functionality from its parent type.
Core capabilities include: string; propertycollection; sets the name value. These operations enable developers to integrate a3dobject functionality directly into Java applications.
The class also provides the name property (gets the name), the properties property (gets the properties).
The class offers 2 constructor overloads, allowing flexible initialization depending on the calling context.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
name | String | Read | Gets the name. |
properties | PropertyCollection | Read | Gets the properties. |
Methods
| Signature | Description |
|---|---|
A3DObject() | Creates an object with the specified name |
A3DObject(name: String) | |
getName() → String | Returns the name. |
setName(name: String) | Sets the name value. |
getProperties() → PropertyCollection | Returns the properties. |
findProperty(name: String) → Property | Searches for a property by name and returns it if found |
getProperty(name: String) → Object | Retrieves the value of a named property |
setProperty(name: String, value: Object) | Sets the property value. |
removeProperty(name: String) → boolean | Deletes the specified property |
removeProperty(property: Property) → boolean |