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 |
---|---|---|
int |
Gets the number of elements contained in the list |
|
operator [int index] |
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 |
---|---|
Adds an item to the DetectedFingerList object. |
|
Clears the DetectedFingerList object. |
|
Clones the DetectedFingerList object. |
|
Gets an item of the DetectedFingerList object. |
|
Gets the number of elements in the DetectedFingerList object. |
|
Removes an element of the DetectedFingerList object. |
|
DetectedFingerList object. |
|
Sets an item of the DetectedFingerList object. |