Package org.apache.fluo.api.data
Class Span.Builder
- java.lang.Object
-
- org.apache.fluo.api.data.Span.Builder
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Span
build()
Span.EndCFBuilder
endRow(CharSequence row)
Build end of Span starting with row (will be encoded UTF-8)Span.EndCFBuilder
endRow(Bytes row)
Build end of Span starting with rowSpan.StartCFBuilder
startRow(CharSequence row)
Build start of Span starting with row (will be encoded UTF-8)Span.StartCFBuilder
startRow(Bytes row)
Build start of Span starting with row
-
-
-
Method Detail
-
startRow
public Span.StartCFBuilder startRow(Bytes row)
Build start of Span starting with row
-
startRow
public Span.StartCFBuilder startRow(CharSequence row)
Build start of Span starting with row (will be encoded UTF-8)
-
endRow
public Span.EndCFBuilder endRow(Bytes row)
Build end of Span starting with row
-
endRow
public Span.EndCFBuilder endRow(CharSequence row)
Build end of Span starting with row (will be encoded UTF-8)
-
build
public Span build()
-
-