public class TripletFields
extends Object
implements java.io.Serializable
| Modifier and Type | Field and Description | 
|---|---|
| static TripletFields | AllExpose all the fields (source, edge, and destination). | 
| static TripletFields | DstExpose the destination and edge fields but not the source field. | 
| static TripletFields | EdgeOnlyExpose only the edge field and not the source or destination field. | 
| static TripletFields | NoneNone of the triplet fields are exposed. | 
| static TripletFields | SrcExpose the source and edge fields but not the destination field. | 
| boolean | useDstIndicates whether the destination vertex attribute is included. | 
| boolean | useEdgeIndicates whether the edge attribute is included. | 
| boolean | useSrcIndicates whether the source vertex attribute is included. | 
| Constructor and Description | 
|---|
| TripletFields()Constructs a default TripletFields in which all fields are included. | 
| TripletFields(boolean useSrc,
             boolean useDst,
             boolean useEdge) | 
public final boolean useSrc
public final boolean useDst
public final boolean useEdge
public static final TripletFields None
public static final TripletFields EdgeOnly
public static final TripletFields Src
public static final TripletFields Dst
public static final TripletFields All