Package com.fauna.query.builder
Class QueryFragment<T>
- java.lang.Object
-
- com.fauna.query.builder.QueryFragment<T>
-
- Type Parameters:
T
- The type of QueryFragment.
- 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.
-
-
-
Method Detail
-
get
public abstract T get()
Retrieves the value represented by this fragment.- Returns:
- the value of this fragment.
-
-