Get a BigInteger attribute from Cassandra ResultSet
You can get value as a long, instead.
I couldn't test it but could you try this:
PreparedStatement statement = client.session.prepare("select count(*) from corpus.word_usage");
ResultSet results = client.session.execute(statement.bind());
Row row = results.one();
long expected = row.getLong("count");