Package com.yandex.ydb.table.settings
Class ReadTableSettings
- java.lang.Object
-
- com.yandex.ydb.table.settings.ReadTableSettings
-
@ParametersAreNonnullByDefault public class ReadTableSettings extends Object
- Author:
- Sergey Polovko
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classReadTableSettings.BuilderBUILDER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description com.google.common.collect.ImmutableList<String>getColumns()longgetDeadlineAfter()TupleValuegetFromKey()intgetRowLimit()longgetTimeoutNanos()TupleValuegetToKey()booleanisFromInclusive()booleanisOrdered()booleanisToInclusive()static ReadTableSettings.BuildernewBuilder()
-
-
-
Method Detail
-
newBuilder
public static ReadTableSettings.Builder newBuilder()
-
isOrdered
public boolean isOrdered()
-
getFromKey
@Nullable public TupleValue getFromKey()
-
isFromInclusive
public boolean isFromInclusive()
-
getToKey
@Nullable public TupleValue getToKey()
-
isToInclusive
public boolean isToInclusive()
-
getRowLimit
public int getRowLimit()
-
getColumns
public com.google.common.collect.ImmutableList<String> getColumns()
-
getTimeoutNanos
public long getTimeoutNanos()
-
getDeadlineAfter
public long getDeadlineAfter()
-
-