com.todoroo.andlib.data
Interface Property.PropertyVisitor<RETURN,PARAMETER>

All Known Implementing Classes:
AbstractDatabase.SqlConstructorVisitor, AbstractModel.ContentValuesSavingVisitor, TodorooCursor.CursorReadingVisitor
Enclosing class:
Property<TYPE>

public static interface Property.PropertyVisitor<RETURN,PARAMETER>

Visitor interface for property classes

Author:
Tim Su

Method Summary
 RETURN visitDouble(Property<java.lang.Double> property, PARAMETER data)
           
 RETURN visitInteger(Property<java.lang.Integer> property, PARAMETER data)
           
 RETURN visitLong(Property<java.lang.Long> property, PARAMETER data)
           
 RETURN visitString(Property<java.lang.String> property, PARAMETER data)
           
 

Method Detail

visitInteger

RETURN visitInteger(Property<java.lang.Integer> property,
                    PARAMETER data)

visitLong

RETURN visitLong(Property<java.lang.Long> property,
                 PARAMETER data)

visitDouble

RETURN visitDouble(Property<java.lang.Double> property,
                   PARAMETER data)

visitString

RETURN visitString(Property<java.lang.String> property,
                   PARAMETER data)