- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {ArrayList a =
new ArrayList<String>()
new ArrayList()
new ArrayList<Object>()
- Smart code suggestions by Codota
}
/** * Defines a NOT query for a query definition. To negate * a list of query definitions, define an AND or * OR query over the list and define the NOT query over * the AND or OR query. * @param query the query definition * @return the StructuredQueryDefinition for the NOT query */ public StructuredQueryDefinition not(StructuredQueryDefinition query) { checkQuery(query); return new NotQuery(query); }
/** * Defines a NOT query for a query definition. To negate * a list of query definitions, define an AND or * OR query over the list and define the NOT query over * the AND or OR query. * @param query the query definition * @return the StructuredQueryDefinition for the NOT query */ public NotQuery not(StructuredQueryDefinition query) { checkQuery(query); return new NotQuery(query); }