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

NameTypeAccessDescription
nameStringReadGets the name.
propertiesPropertyCollectionReadGets the properties.

Methods

SignatureDescription
A3DObject()Creates an object with the specified name
A3DObject(name: String)
getName()StringReturns the name.
setName(name: String)Sets the name value.
getProperties()PropertyCollectionReturns the properties.
findProperty(name: String)PropertySearches for a property by name and returns it if found
getProperty(name: String)ObjectRetrieves the value of a named property
setProperty(name: String, value: Object)Sets the property value.
removeProperty(name: String)booleanDeletes the specified property
removeProperty(property: Property)boolean

See Also