Uses of Class
com.todoroo.andlib.data.Property

Packages that use Property
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 
com.todoroo.andlib.utility Todoroo Library utility classes 
com.todoroo.astrid.data Astrid data model classes and ContentResolver data access objects 
com.todoroo.astrid.sync Astrid synchronization helpers 
 

Uses of Property in com.todoroo.andlib.data
 

Subclasses of Property in com.todoroo.andlib.data
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 Property
 Property<TYPE> Property.clone()
          Return a clone of this property
 Property<?>[] Table.getProperties()
          Reads a list of properties from model class by reflection
 Property<?>[] TodorooCursor.getProperties()
          Gets entire property list
 

Methods in com.todoroo.andlib.data with parameters of type Property
 void AbstractModel.clearValue(Property<?> property)
          Clear the key for the given property
 boolean AbstractModel.containsNonNullValue(Property<?> property)
           
 boolean AbstractModel.containsValue(Property<?> property)
           
 TYPE ContentResolverDao.fetch(long id, Property<?>... properties)
          Returns object corresponding to the given identifier
 TYPE DatabaseDao.fetch(long id, Property<?>... properties)
          Returns object corresponding to the given identifier
 Field Table.field(Property<?> property)
          Create a field object based on the given property
<PROPERTY_TYPE>
PROPERTY_TYPE
TodorooCursor.get(Property<PROPERTY_TYPE> property)
          Get the value for the given property on the underlying Cursor
<TYPE> TYPE
AbstractModel.getValue(Property<TYPE> property)
          Reads the given property.
 TodorooCursor<TYPE> DatabaseDao.rawQuery(java.lang.String selection, java.lang.String[] selectionArgs, Property<?>... properties)
          Construct a query with raw SQL
 void AbstractModel.ContentValuesSavingVisitor.save(Property<?> property, android.content.ContentValues newStore, java.lang.Object value)
           
<TYPE> void
AbstractModel.setValue(Property<TYPE> property, TYPE value)
          Sets the given property.
 java.lang.Void AbstractModel.ContentValuesSavingVisitor.visitDouble(Property<java.lang.Double> property, java.lang.Object value)
           
 RETURN Property.PropertyVisitor.visitDouble(Property<java.lang.Double> property, PARAMETER data)
           
 java.lang.Object TodorooCursor.CursorReadingVisitor.visitDouble(Property<java.lang.Double> property, TodorooCursor<?> cursor)
           
 java.lang.String AbstractDatabase.SqlConstructorVisitor.visitDouble(Property<java.lang.Double> property, java.lang.Void data)
           
 java.lang.Void AbstractModel.ContentValuesSavingVisitor.visitInteger(Property<java.lang.Integer> property, java.lang.Object value)
           
 RETURN Property.PropertyVisitor.visitInteger(Property<java.lang.Integer> property, PARAMETER data)
           
 java.lang.Object TodorooCursor.CursorReadingVisitor.visitInteger(Property<java.lang.Integer> property, TodorooCursor<?> cursor)
           
 java.lang.String AbstractDatabase.SqlConstructorVisitor.visitInteger(Property<java.lang.Integer> property, java.lang.Void data)
           
 java.lang.Void AbstractModel.ContentValuesSavingVisitor.visitLong(Property<java.lang.Long> property, java.lang.Object value)
           
 RETURN Property.PropertyVisitor.visitLong(Property<java.lang.Long> property, PARAMETER data)
           
 java.lang.Object TodorooCursor.CursorReadingVisitor.visitLong(Property<java.lang.Long> property, TodorooCursor<?> cursor)
           
 java.lang.String AbstractDatabase.SqlConstructorVisitor.visitLong(Property<java.lang.Long> property, java.lang.Void data)
           
 java.lang.Void AbstractModel.ContentValuesSavingVisitor.visitString(Property<java.lang.String> property, java.lang.Object value)
           
 RETURN Property.PropertyVisitor.visitString(Property<java.lang.String> property, PARAMETER data)
           
 java.lang.Object TodorooCursor.CursorReadingVisitor.visitString(Property<java.lang.String> property, TodorooCursor<?> cursor)
           
 java.lang.String AbstractDatabase.SqlConstructorVisitor.visitString(Property<java.lang.String> property, java.lang.Void data)
           
 

Constructors in com.todoroo.andlib.data with parameters of type Property
TodorooCursor(android.database.Cursor cursor, Property<?>[] properties)
          Create an AstridCursor from the supplied Cursor object.
 

Uses of Property in com.todoroo.andlib.sql
 

Methods in com.todoroo.andlib.sql that return Property
 Property<?>[] Query.getFields()
          Gets a list of fields returned by this query
 

Methods in com.todoroo.andlib.sql with parameters of type Property
 Query Query.appendSelectFields(Property<?>... selectFields)
           
 

Uses of Property in com.todoroo.andlib.utility
 

Methods in com.todoroo.andlib.utility that return Property
static Property<?>[] AndroidUtilities.addToArray(Property<?>[] list, Property<?>... newItems)
          Join items to a list
 

Methods in com.todoroo.andlib.utility with parameters of type Property
static Property<?>[] AndroidUtilities.addToArray(Property<?>[] list, Property<?>... newItems)
          Join items to a list
static Property<?>[] AndroidUtilities.addToArray(Property<?>[] list, Property<?>... newItems)
          Join items to a list
 

Uses of Property in com.todoroo.astrid.data
 

Fields in com.todoroo.astrid.data declared as Property
static Property<?>[] Metadata.PROPERTIES
          List of all properties for this model
static Property<?>[] StoreObject.PROPERTIES
          List of all properties for this model
static Property<?>[] TagData.PROPERTIES
          List of all properties for this model
static Property<?>[] Task.PROPERTIES
          List of all properties for this model
static Property<?>[] Update.PROPERTIES
          List of all properties for this model
static Property<?>[] User.PROPERTIES
          List of all properties for this model
 

Uses of Property in com.todoroo.astrid.sync
 

Methods in com.todoroo.astrid.sync with parameters of type Property
 TodorooCursor<Task> SyncMetadataService.getLocallyCreated(Property<?>... properties)
          Gets tasks that were created since last sync
 TodorooCursor<Task> SyncMetadataService.getLocallyUpdated(Property<?>... properties)
          Gets tasks that were modified since last sync