Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
実際、この場合、ランダムな並べ替えの解決策が必要です。で並べてみましたCollections
Collections
SolrDocumentList randSolrDocs = Collections.shuffle(solrDocList)
しかし、エラーを受け取りましたType mismatch: cannot convert from void to SolrDocumentList。
Type mismatch: cannot convert from void to SolrDocumentList
助けてください。
Collections.shuffle(solrDocList)パラメータとして渡すリストをシャッフルします。メソッドには戻り値がありません。
Collections.shuffle(solrDocList)
したがって、呼び出しの後、solrDocListランダム化されます。
solrDocList