Package com.db4o.qlin

Interface QLin<T>

    • Method Detail

      • where

        QLin<T> where​(java.lang.Object expression)
        adds a where node to this QLin query.
        Parameters:
        expression - can be any of the following:
      • select

        ObjectSet<T> select()
        executes the QLin query and returns the result as an ObjectSet. Note that ObjectSet extends List and Iterable on the platforms that support these interfaces. You may want to use these interfaces instead of working directly against an ObjectSet.
      • equal

        QLin<T> equal​(java.lang.Object obj)
      • startsWith

        QLin<T> startsWith​(java.lang.String string)
      • limit

        QLin<T> limit​(int size)
      • smaller

        QLin<T> smaller​(java.lang.Object obj)
      • greater

        QLin<T> greater​(java.lang.Object obj)
      • singleOrDefault

        T singleOrDefault​(T defaultValue)
      • single

        T single()