public class TripletFields
extends Object
implements java.io.Serializable
Modifier and Type | Field and Description |
---|---|
static TripletFields |
All
Expose all the fields (source, edge, and destination).
|
static TripletFields |
Dst
Expose the destination and edge fields but not the source field.
|
static TripletFields |
EdgeOnly
Expose only the edge field and not the source or destination field.
|
static TripletFields |
None
None of the triplet fields are exposed.
|
static TripletFields |
Src
Expose the source and edge fields but not the destination field.
|
boolean |
useDst
Indicates whether the destination vertex attribute is included.
|
boolean |
useEdge
Indicates whether the edge attribute is included.
|
boolean |
useSrc
Indicates 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