FingerCandidateList Class¶
Namespace: id3.Finger
Definition¶
Represents a candidate list in a one-to-many search.
class FingerCandidateList
class FingerCandidateList implements Finalizable
public partial class FingerCandidateList
public class FingerCandidateList implements AutoCloseable, Serializable
public class FingerCandidateList
typedef struct id3FingerCandidateList *ID3_FINGER_CANDIDATE_LIST;
Usage¶
fingerCandidateListInstance = id3finger.FingerCandidateList()
Explicit destruction
# ...
del fingerCandidateListInstance
final fingerCandidateListInstance = sdk.FingerCandidateList();
// ...
Explicit destruction
// ...
fingerCandidateListInstance.dispose()
using (var fingerCandidateListInstance = new FingerCandidateList())
{
// ...
}
Explicit destruction
var fingerCandidateListInstance = new FingerCandidateList()
// ...
fingerCandidateListInstance.Dispose()
try (FingerCandidateList fingerCandidateListInstance = new FingerCandidateList()) {
// ...
}
Explicit destruction
FingerCandidateList fingerCandidateListInstance = new FingerCandidateList();
// ...
fingerCandidateListInstance.close();
private var fingerCandidateListInstance: FingerCandidateList? = nil
fingerCandidateListInstance = try FingerCandidateList()
ID3_FINGER_CANDIDATE_LIST hFingerCandidateList{};
int err = id3FingerCandidateList_Initialize(&hFingerCandidateList);
if (err == ID3_SUCCESS) {
// ...
id3FingerCandidateList_Dispose(&hFingerCandidateList);
}
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 FingerCandidateList object. |
|
Clears the FingerCandidateList object. |
|
Gets an item of the FingerCandidateList object. |
|
Gets the number of elements in the FingerCandidateList object. |
|
Removes an element of the FingerCandidateList object. |
|
FingerCandidateList object. |
|
Sets an item of the FingerCandidateList object. |
|
Sets the corresponding template record for the candidate of given index. |