Example usage for org.apache.thrift EncodingUtils testBit

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

Introduction

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

Prototype

public static final boolean testBit(long v, int position) 

Source Link

Usage

From source file:ezbake.query.intents.Location.java

License:Apache License

/** Returns true if field orientationAngle is set (has been assigned a value) and false otherwise */
public boolean isSetOrientationAngle() {
    return EncodingUtils.testBit(__isset_bitfield, __ORIENTATIONANGLE_ISSET_ID);
}

From source file:ezbake.query.intents.Location.java

License:Apache License

/** Returns true if field course is set (has been assigned a value) and false otherwise */
public boolean isSetCourse() {
    return EncodingUtils.testBit(__isset_bitfield, __COURSE_ISSET_ID);
}

From source file:ezbake.query.intents.Location.java

License:Apache License

/** Returns true if field speed is set (has been assigned a value) and false otherwise */
public boolean isSetSpeed() {
    return EncodingUtils.testBit(__isset_bitfield, __SPEED_ISSET_ID);
}

From source file:ezbake.services.deploy.thrift.ArtifactInfo.java

License:Apache License

/** Returns true if field purgeable is set (has been assigned a value) and false otherwise */
public boolean isSetPurgeable() {
    return EncodingUtils.testBit(__isset_bitfield, __PURGEABLE_ISSET_ID);
}

From source file:ezbake.services.deploy.thrift.ArtifactInfo.java

License:Apache License

/** Returns true if field systemLogfileDisabled is set (has been assigned a value) and false otherwise */
public boolean isSetSystemLogfileDisabled() {
    return EncodingUtils.testBit(__isset_bitfield, __SYSTEMLOGFILEDISABLED_ISSET_ID);
}

From source file:ezbake.services.deploy.thrift.Scaling.java

License:Apache License

/** Returns true if field numberOfInstances is set (has been assigned a value) and false otherwise */
public boolean isSetNumberOfInstances() {
    return EncodingUtils.testBit(__isset_bitfield, __NUMBEROFINSTANCES_ISSET_ID);
}

From source file:ezbake.services.deploy.thrift.WebAppInfo.java

License:Apache License

/** Returns true if field timeout is set (has been assigned a value) and false otherwise */
public boolean isSetTimeout() {
    return EncodingUtils.testBit(__isset_bitfield, __TIMEOUT_ISSET_ID);
}

From source file:ezbake.services.deploy.thrift.WebAppInfo.java

License:Apache License

/** Returns true if field timeoutRetries is set (has been assigned a value) and false otherwise */
public boolean isSetTimeoutRetries() {
    return EncodingUtils.testBit(__isset_bitfield, __TIMEOUTRETRIES_ISSET_ID);
}

From source file:ezbake.services.deploy.thrift.WebAppInfo.java

License:Apache License

/** Returns true if field uploadFileSize is set (has been assigned a value) and false otherwise */
public boolean isSetUploadFileSize() {
    return EncodingUtils.testBit(__isset_bitfield, __UPLOADFILESIZE_ISSET_ID);
}

From source file:ezbake.services.deploy.thrift.WebAppInfo.java

License:Apache License

/** Returns true if field stickySession is set (has been assigned a value) and false otherwise */
public boolean isSetStickySession() {
    return EncodingUtils.testBit(__isset_bitfield, __STICKYSESSION_ISSET_ID);
}