MCPcopy Create free account
hub / github.com/androrm/androrm / Query

Interface Query

src/src/com/orm/androrm/Query.java:31–41  ·  view source on GitHub ↗

Generic interface for all queries, that can be executed by DatabaseAdapter#query(Query). @author Philipp Giese

Source from the content-addressed store, hash-verified

29 * @author Philipp Giese
30 */
31public interface Query {
32
33 /**
34 * In order to work properly, each query has to override
35 * the <code>toString</code> method of {@link Object}.
36 *
37 * @return String representation of the query.
38 */
39 public String toString();
40
41}

Callers 8

testSimpleAndMethod · 0.65
testParanthesisMethod · 0.65
testDefaultMethod · 0.65
testDefaultMethod · 0.65
testSelectMethod · 0.65
testDistinctMethod · 0.65
testFromJoinMethod · 0.65
testFromSelectMethod · 0.65

Implementers 13

DeleteStatementsrc/src/com/orm/androrm/statement/Dele
Wheresrc/src/com/orm/androrm/Where.java
OrderBysrc/src/com/orm/androrm/OrderBy.java
Limitsrc/src/com/orm/androrm/Limit.java
TableDefinitionsrc/src/com/orm/androrm/TableDefinitio
JoinStatementsrc/src/com/orm/androrm/statement/Join
Statementsrc/src/com/orm/androrm/statement/Stat
ComposedStatementsrc/src/com/orm/androrm/statement/Comp
OrStatementsrc/src/com/orm/androrm/statement/OrSt
SelectStatementsrc/src/com/orm/androrm/statement/Sele
InStatementsrc/src/com/orm/androrm/statement/InSt
LikeStatementsrc/src/com/orm/androrm/statement/Like

Calls

no outgoing calls

Tested by

no test coverage detected