select method

LCQuery<T> select(
  1. String keys
)

Restricts the keys of the LCObject returned.

Implementation

LCQuery<T> select(String keys) {
  condition.select(keys);
  return this;
}