CustomObject
Inheritance: java.lang.Object, com.aspose.threed.A3DObject
public class CustomObject extends A3DObject
3D 파일에서 사용되는 메타 데이터 또는 사용자 정의 객체는 이 클래스에서 관리됩니다. 모든 사용자 정의 속성은 동적 속성으로 저장됩니다.
생성자
| 생성자 | 설명 |
|---|---|
| CustomObject() | CustomObject 클래스의 새 인스턴스를 초기화합니다. |
| CustomObject(String name) | CustomObject 클래스의 새 인스턴스를 초기화합니다. |
메서드
| 메서드 | 설명 |
|---|---|
| equals(Object arg0) | |
| findProperty(String propertyName) | 속성을 찾습니다. |
| getClass() | |
| getName() | 이름을 가져옵니다. |
| getProperties() | 모든 속성의 컬렉션을 가져옵니다. |
| getProperty(String property) | 지정된 속성의 값을 가져옵니다 |
| hashCode() | |
| notify() | |
| notifyAll() | |
| removeProperty(Property property) | 동적 속성을 제거합니다. |
| removeProperty(String property) | 이름으로 식별되는 지정된 속성을 제거합니다. |
| setName(String value) | 이름을 설정합니다. |
| setProperty(String property, Object value) | 지정된 속성의 값을 설정합니다. |
| toString() | |
| wait() | |
| wait(long arg0) | |
| wait(long arg0, int arg1) |
CustomObject()
public CustomObject()
CustomObject 클래스의 새 인스턴스를 초기화합니다.
CustomObject(String name)
public CustomObject(String name)
CustomObject 클래스의 새 인스턴스를 초기화합니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 이름 | java.lang.String | 이름 |
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| arg0 | java.lang.Object |
Returns: boolean
findProperty(String propertyName)
public Property findProperty(String propertyName)
속성을 찾습니다. 동적 속성 (Created by CreateDynamicProperty/SetProperty) 또는 네이티브 속성 (Identified by its name)일 수 있습니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| propertyName | java.lang.String | 속성 이름. |
Returns: Property - The property.
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getName()
public String getName()
이름을 가져옵니다.
Returns: java.lang.String - 이름.
getProperties()
public PropertyCollection getProperties()
모든 속성의 컬렉션을 가져옵니다.
Returns: PropertyCollection - the collection of all properties.
getProperty(String property)
public Object getProperty(String property)
지정된 속성의 값을 가져옵니다
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 속성 | java.lang.String | 속성 이름 |
Returns: java.lang.Object - 찾은 속성의 값
hashCode()
public native int hashCode()
Returns: int
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
removeProperty(Property property)
public boolean removeProperty(Property property)
동적 속성을 제거합니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| property | Property | 제거할 속성 |
Returns: boolean - 속성이 성공적으로 제거되면 true
removeProperty(String property)
public boolean removeProperty(String property)
이름으로 식별되는 지정된 속성을 제거합니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 속성 | java.lang.String | 제거할 속성 |
Returns: boolean - 속성이 성공적으로 제거되면 true
setName(String value)
public void setName(String value)
이름을 설정합니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 값 | java.lang.String | 새 값 |
setProperty(String property, Object value)
public void setProperty(String property, Object value)
지정된 속성의 값을 설정합니다.
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| 속성 | java.lang.String | 속성 이름 |
| 값 | java.lang.Object | 속성의 값 |
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final void wait(long arg0)
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
| 매개변수 | 형식 | 설명 |
|---|---|---|
| arg0 | long | |
| arg1 | int |