DetectedFingerList Class

Namespace: id3.Finger

Definition

Represents a list of detected fingers.
class DetectedFingerList
class DetectedFingerList implements Finalizable
public partial class DetectedFingerList
public class DetectedFingerList implements AutoCloseable, Serializable
public class DetectedFingerList
typedef struct id3DetectedFingerList *ID3_DETECTED_FINGER_LIST;

Usage

detectedFingerListInstance = DetectedFingerList()
# ...

Explicit destruction

# ...
del detectedFingerListInstance
final detectedFingerListInstance = sdk.DetectedFingerList();
// ...

Explicit destruction

// ...
detectedFingerListInstance.dispose()
using (var detectedFingerListInstance = new DetectedFingerList())
{
   // ...
}

Explicit destruction

var detectedFingerListInstance = new DetectedFingerList()
// ...
detectedFingerListInstance.Dispose()
try (DetectedFingerList detectedFingerListInstance = new DetectedFingerList()) {
// ...
}

Explicit destruction

DetectedFingerList detectedFingerListInstance = new DetectedFingerList();
// ...
detectedFingerListInstance.close();
private var detectedFingerListInstance: DetectedFingerList? = nil
detectedFingerListInstance = try DetectedFingerList()
ID3_DETECTED_FINGER_LIST hDetectedFingerList{};
int err = id3DetectedFingerList_Initialize(&hDetectedFingerList);
if (err == ID3_SUCCESS) {
    // ...
    id3DetectedFingerList_Dispose(&hDetectedFingerList);
}

Properties

Name

Type

Description

count

int

Gets the number of elements contained in the list

operator [int index]

DetectedFinger

Gets or sets the element at the specified index in the list.

Iteration

This class supports iteration in Dart, C#, Java and Python.

Methods

Name

Description

add

Adds an item to the DetectedFingerList object.

clear

Clears the DetectedFingerList object.

clone

Clones the DetectedFingerList object.

get

Gets an item of the DetectedFingerList object.

getCount

Gets the number of elements in the DetectedFingerList object.

removeAt

Removes an element of the DetectedFingerList object.

resize

DetectedFingerList object.

set

Sets an item of the DetectedFingerList object.