getObjectType method

ObjectType getObjectType(
  1. int handle
)

Get the type of a handle.

Implementation

ObjectType getObjectType(final int handle) {
  check(synthizer.syz_handleGetObjectType(intPointer, handle));
  return intPointer.value.toObjectType();
}