public void read(org.apache.thrift.protocol.TProtocol iprot, MountTOptions struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) { schemeField = iprot.readFieldBegin(); if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { break; } switch (schemeField.id) { case 1: // READ_ONLY if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { struct.readOnly = iprot.readBool(); struct.setReadOnlyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } iprot.readFieldEnd(); } iprot.readStructEnd(); // check for required fields of primitive type, which can't be checked in the validate method struct.validate(); }
@Override public void read(org.apache.thrift.protocol.TProtocol prot, MountTOptions struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { struct.readOnly = iprot.readBool(); struct.setReadOnlyIsSet(true); } }
@Override public void write(org.apache.thrift.protocol.TProtocol prot, MountTOptions struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; BitSet optionals = new BitSet(); if (struct.isSetReadOnly()) { optionals.set(0); } oprot.writeBitSet(optionals, 1); if (struct.isSetReadOnly()) { oprot.writeBool(struct.readOnly); } }
public void write(org.apache.thrift.protocol.TProtocol oprot, MountTOptions struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.isSetReadOnly()) { oprot.writeFieldBegin(READ_ONLY_FIELD_DESC); oprot.writeBool(struct.readOnly); oprot.writeFieldEnd(); } oprot.writeFieldStop(); oprot.writeStructEnd(); }
@Override public int compareTo(MountTOptions other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; lastComparison = Boolean.valueOf(isSetReadOnly()).compareTo(other.isSetReadOnly()); if (lastComparison != 0) { return lastComparison; } if (isSetReadOnly()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.readOnly, other.readOnly); if (lastComparison != 0) { return lastComparison; } } return 0; }
public boolean equals(MountTOptions that) { if (that == null) return false; boolean this_present_readOnly = true && this.isSetReadOnly(); boolean that_present_readOnly = true && that.isSetReadOnly(); if (this_present_readOnly || that_present_readOnly) { if (!(this_present_readOnly && that_present_readOnly)) return false; if (this.readOnly != that.readOnly) return false; } return true; }