Package com.alibaba.graphscope.ds
Interface DestList
-
- All Superinterfaces:
com.alibaba.fastffi.CXXPointer
,com.alibaba.fastffi.CXXPointerRange<FidPointer>
,com.alibaba.fastffi.CXXRange<FidPointer>
,com.alibaba.fastffi.FFIPointer
,FFIType
,Iterable<FidPointer>
,Serializable
- All Known Implementing Classes:
DestList_cxx_0x69320d4b
public interface DestList extends com.alibaba.fastffi.FFIPointer, com.alibaba.fastffi.CXXPointer, com.alibaba.fastffi.CXXPointerRange<FidPointer>
Java Wrapper for grape::DestList , contains two fid pointer, the begin and the end.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description FidPointer
begin()
Fetch the begin fid pointer.default boolean
empty()
Check empty DestList or not.FidPointer
end()
Fetch the end fid pointerdefault boolean
notEmpty()
Check if not empty.-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
begin
FidPointer begin()
Fetch the begin fid pointer.- Specified by:
begin
in interfacecom.alibaba.fastffi.CXXRange<FidPointer>
- Returns:
- fetch the end fid pointer.
-
end
FidPointer end()
Fetch the end fid pointer- Specified by:
end
in interfacecom.alibaba.fastffi.CXXRange<FidPointer>
- Returns:
- the end fid pointer.
-
empty
default boolean empty()
Check empty DestList or not.- Returns:
- empty or not.
-
notEmpty
default boolean notEmpty()
Check if not empty.- Returns:
- true for not empty.
-
-