Uses of Class
com.todoroo.andlib.sql.Field

Packages that use Field
com.todoroo.andlib.data Todoroo Library classes for the data layer: accessing data from a database or ContentResolver 
com.todoroo.andlib.sql Fork of sql-dsl 
 

Uses of Field in com.todoroo.andlib.data
 

Subclasses of Field in com.todoroo.andlib.data
 class Property<TYPE>
          Property represents a typed column in a database.
static class Property.CountProperty
          Counting in aggregated tables.
static class Property.DoubleProperty
          Double property type.
static class Property.IntegerFunctionProperty
          Runs a SQL function and returns the result as a string
static class Property.IntegerProperty
          Integer property type.
static class Property.LongProperty
          Long property type.
static class Property.StringFunctionProperty
          Runs a SQL function and returns the result as a string
static class Property.StringProperty
          String property type.
 

Methods in com.todoroo.andlib.data that return Field
 Field Table.field(Property<?> property)
          Create a field object based on the given property
 

Uses of Field in com.todoroo.andlib.sql
 

Methods in com.todoroo.andlib.sql that return Field
static Field Functions.cast(Field field, java.lang.String newType)
           
static Field Functions.count()
           
static Field Field.field(java.lang.String expression)
           
static Field Functions.fromNow(long millis)
           
static Field Functions.length(Property.StringProperty field)
           
static Field Functions.max(Field field)
           
static Field Functions.now()
           
static Field Functions.upper(Field title)
           
 

Methods in com.todoroo.andlib.sql with parameters of type Field
static Field Functions.cast(Field field, java.lang.String newType)
           
static Criterion UnaryCriterion.eq(Field expression, java.lang.Object value)
           
 Query Query.groupBy(Field... groupBy)
           
 QueryTemplate QueryTemplate.groupBy(Field... groupBy)
           
static GroupBy GroupBy.groupBy(Field field)
           
static Criterion UnaryCriterion.gt(Field field, java.lang.Object value)
           
static Criterion UnaryCriterion.isNotNull(Field field)
           
static Criterion UnaryCriterion.isNull(Field field)
           
static Criterion UnaryCriterion.like(Field field, java.lang.String value)
           
static Criterion UnaryCriterion.like(Field field, java.lang.String value, java.lang.String escape)
           
static Criterion UnaryCriterion.lt(Field field, java.lang.Object value)
           
static Criterion UnaryCriterion.lte(Field field, java.lang.Object value)
           
static Field Functions.max(Field field)
           
static Criterion UnaryCriterion.neq(Field field, java.lang.Object value)
           
static Query Query.select(Field... fields)
           
static Query Query.selectDistinct(Field... fields)
           
static Field Functions.upper(Field title)