Class QueryFragment<T>

  • Direct Known Subclasses:
    Query, QueryArr, QueryLiteral, QueryObj, QueryVal

    public abstract class QueryFragment<T>
    extends java.lang.Object
    An abstract class serving as a base for different types of query fragments.
    • Constructor Summary

      Constructors 
      Constructor Description
      QueryFragment()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract T get()
      Retrieves the value represented by this fragment.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • QueryFragment

        public QueryFragment()
    • Method Detail

      • get

        public abstract T get()
        Retrieves the value represented by this fragment.
        Returns:
        the value of this fragment.