Cassandra DB に Datastax Java ドライバーAPIを使用しようとしていますが、関数 getList を持つ行オブジェクトがあります。
public <T> List<T> getList(String name,
Class<T> elementsClass)
Returns the value of column name as a list.
Parameters:
name - the name of the column to retrieve.
elementsClass - the class for the elements of the list to retrieve.
Returns:
the value of the ith column in this row as a list of elementsClass objects. If the value is NULL, an empty list is returned (note that Cassandra makes no difference between an empty list and column of type list that is not set).
私の質問は、これを実際にどのように使用するのですか? Class<T> elementsClass
タイプのパラメーターを作成する方法がわかりません。私の場合、結果は float のリストになるはずです (私が使用している Cassandra スキーマに基づく)。