Example usage for org.apache.thrift EncodingUtils setBit

List of usage examples for org.apache.thrift EncodingUtils setBit

Introduction

In this page you can find the example usage for org.apache.thrift EncodingUtils setBit.

Prototype

public static final long setBit(long v, int position, boolean value) 

Source Link

Usage

From source file:org.apache.accumulo.core.tabletserver.thrift.TabletStats.java

License:Apache License

public void setNumEntriesIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __NUMENTRIES_ISSET_ID, value);
}

From source file:org.apache.accumulo.core.tabletserver.thrift.TabletStats.java

License:Apache License

public void setSplitCreationTimeIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __SPLITCREATIONTIME_ISSET_ID, value);
}

From source file:org.apache.accumulo.core.trace.thrift.TInfo.java

License:Apache License

public void setTraceIdIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __TRACEID_ISSET_ID, value);
}

From source file:org.apache.accumulo.core.trace.thrift.TInfo.java

License:Apache License

public void setParentIdIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __PARENTID_ISSET_ID, value);
}

From source file:org.apache.accumulo.proxy.thrift.BatchScanOptions.java

License:Apache License

public void setThreadsIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __THREADS_ISSET_ID, value);
}

From source file:org.apache.accumulo.proxy.thrift.ColumnUpdate.java

License:Apache License

public void setDeleteCellIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __DELETECELL_ISSET_ID, value);
}

From source file:org.apache.accumulo.proxy.thrift.ConditionalWriterOptions.java

License:Apache License

public void setMaxMemoryIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __MAXMEMORY_ISSET_ID, value);
}

From source file:org.apache.accumulo.proxy.thrift.ConditionalWriterOptions.java

License:Apache License

public void setTimeoutMsIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __TIMEOUTMS_ISSET_ID, value);
}

From source file:org.apache.accumulo.proxy.thrift.KeyValueAndPeek.java

License:Apache License

public void setHasNextIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __HASNEXT_ISSET_ID, value);
}

From source file:org.apache.accumulo.proxy.thrift.Range.java

License:Apache License

public void setStartInclusiveIsSet(boolean value) {
    __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __STARTINCLUSIVE_ISSET_ID, value);
}