diff --git a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/Family.java b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/Family.java
index 2b003c348..5ec468959 100644
--- a/bloodybattle/src/main/java/com/ljsd/jieling/protocols/Family.java
+++ b/bloodybattle/src/main/java/com/ljsd/jieling/protocols/Family.java
@@ -44719,32 +44719,1288 @@ public final class Family {
// @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.ResetGuildSkillResponse)
}
+ public interface CarChallengeItemOrBuilder
+ extends com.google.protobuf.MessageOrBuilder {
+
+ // optional int32 uid = 1;
+ /**
+ * optional int32 uid = 1;
+ */
+ boolean hasUid();
+ /**
+ * optional int32 uid = 1;
+ */
+ int getUid();
+
+ // optional string userName = 2;
+ /**
+ * optional string userName = 2;
+ */
+ boolean hasUserName();
+ /**
+ * optional string userName = 2;
+ */
+ java.lang.String getUserName();
+ /**
+ * optional string userName = 2;
+ */
+ com.google.protobuf.ByteString
+ getUserNameBytes();
+
+ // optional int32 force = 3;
+ /**
+ * optional int32 force = 3;
+ */
+ boolean hasForce();
+ /**
+ * optional int32 force = 3;
+ */
+ int getForce();
+
+ // optional string guildName = 4;
+ /**
+ * optional string guildName = 4;
+ */
+ boolean hasGuildName();
+ /**
+ * optional string guildName = 4;
+ */
+ java.lang.String getGuildName();
+ /**
+ * optional string guildName = 4;
+ */
+ com.google.protobuf.ByteString
+ getGuildNameBytes();
+
+ // optional int32 score = 5;
+ /**
+ * optional int32 score = 5;
+ */
+ boolean hasScore();
+ /**
+ * optional int32 score = 5;
+ */
+ int getScore();
+
+ // optional int32 hadChallenge = 6;
+ /**
+ * optional int32 hadChallenge = 6;
+ *
+ *
+ * 是否已挑战过,1:表示挑战过,2:未挑战过。 + *+ */ + boolean hasHadChallenge(); + /** + *
optional int32 hadChallenge = 6;
+ *
+ * + * 是否已挑战过,1:表示挑战过,2:未挑战过。 + *+ */ + int getHadChallenge(); + + // optional int32 rank = 7; + /** + *
optional int32 rank = 7;
+ */
+ boolean hasRank();
+ /**
+ * optional int32 rank = 7;
+ */
+ int getRank();
+
+ // optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ boolean hasTeamInfo();
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ com.ljsd.jieling.protocols.CommonProto.TeamOneInfo getTeamInfo();
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ com.ljsd.jieling.protocols.CommonProto.TeamOneInfoOrBuilder getTeamInfoOrBuilder();
+ }
+ /**
+ * Protobuf type {@code com.ljsd.jieling.protocols.CarChallengeItem}
+ */
+ public static final class CarChallengeItem extends
+ com.google.protobuf.GeneratedMessage
+ implements CarChallengeItemOrBuilder {
+ // Use CarChallengeItem.newBuilder() to construct.
+ private CarChallengeItem(com.google.protobuf.GeneratedMessage.Builder> builder) {
+ super(builder);
+ this.unknownFields = builder.getUnknownFields();
+ }
+ private CarChallengeItem(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
+
+ private static final CarChallengeItem defaultInstance;
+ public static CarChallengeItem getDefaultInstance() {
+ return defaultInstance;
+ }
+
+ public CarChallengeItem getDefaultInstanceForType() {
+ return defaultInstance;
+ }
+
+ private final com.google.protobuf.UnknownFieldSet unknownFields;
+ @java.lang.Override
+ public final com.google.protobuf.UnknownFieldSet
+ getUnknownFields() {
+ return this.unknownFields;
+ }
+ private CarChallengeItem(
+ com.google.protobuf.CodedInputStream input,
+ com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ initFields();
+ int mutable_bitField0_ = 0;
+ com.google.protobuf.UnknownFieldSet.Builder unknownFields =
+ com.google.protobuf.UnknownFieldSet.newBuilder();
+ try {
+ boolean done = false;
+ while (!done) {
+ int tag = input.readTag();
+ switch (tag) {
+ case 0:
+ done = true;
+ break;
+ default: {
+ if (!parseUnknownField(input, unknownFields,
+ extensionRegistry, tag)) {
+ done = true;
+ }
+ break;
+ }
+ case 8: {
+ bitField0_ |= 0x00000001;
+ uid_ = input.readInt32();
+ break;
+ }
+ case 18: {
+ bitField0_ |= 0x00000002;
+ userName_ = input.readBytes();
+ break;
+ }
+ case 24: {
+ bitField0_ |= 0x00000004;
+ force_ = input.readInt32();
+ break;
+ }
+ case 34: {
+ bitField0_ |= 0x00000008;
+ guildName_ = input.readBytes();
+ break;
+ }
+ case 40: {
+ bitField0_ |= 0x00000010;
+ score_ = input.readInt32();
+ break;
+ }
+ case 48: {
+ bitField0_ |= 0x00000020;
+ hadChallenge_ = input.readInt32();
+ break;
+ }
+ case 56: {
+ bitField0_ |= 0x00000040;
+ rank_ = input.readInt32();
+ break;
+ }
+ case 66: {
+ com.ljsd.jieling.protocols.CommonProto.TeamOneInfo.Builder subBuilder = null;
+ if (((bitField0_ & 0x00000080) == 0x00000080)) {
+ subBuilder = teamInfo_.toBuilder();
+ }
+ teamInfo_ = input.readMessage(com.ljsd.jieling.protocols.CommonProto.TeamOneInfo.PARSER, extensionRegistry);
+ if (subBuilder != null) {
+ subBuilder.mergeFrom(teamInfo_);
+ teamInfo_ = subBuilder.buildPartial();
+ }
+ bitField0_ |= 0x00000080;
+ break;
+ }
+ }
+ }
+ } catch (com.google.protobuf.InvalidProtocolBufferException e) {
+ throw e.setUnfinishedMessage(this);
+ } catch (java.io.IOException e) {
+ throw new com.google.protobuf.InvalidProtocolBufferException(
+ e.getMessage()).setUnfinishedMessage(this);
+ } finally {
+ this.unknownFields = unknownFields.build();
+ makeExtensionsImmutable();
+ }
+ }
+ public static final com.google.protobuf.Descriptors.Descriptor
+ getDescriptor() {
+ return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_CarChallengeItem_descriptor;
+ }
+
+ protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
+ internalGetFieldAccessorTable() {
+ return com.ljsd.jieling.protocols.Family.internal_static_com_ljsd_jieling_protocols_CarChallengeItem_fieldAccessorTable
+ .ensureFieldAccessorsInitialized(
+ com.ljsd.jieling.protocols.Family.CarChallengeItem.class, com.ljsd.jieling.protocols.Family.CarChallengeItem.Builder.class);
+ }
+
+ public static com.google.protobuf.Parseroptional int32 uid = 1;
+ */
+ public boolean hasUid() {
+ return ((bitField0_ & 0x00000001) == 0x00000001);
+ }
+ /**
+ * optional int32 uid = 1;
+ */
+ public int getUid() {
+ return uid_;
+ }
+
+ // optional string userName = 2;
+ public static final int USERNAME_FIELD_NUMBER = 2;
+ private java.lang.Object userName_;
+ /**
+ * optional string userName = 2;
+ */
+ public boolean hasUserName() {
+ return ((bitField0_ & 0x00000002) == 0x00000002);
+ }
+ /**
+ * optional string userName = 2;
+ */
+ public java.lang.String getUserName() {
+ java.lang.Object ref = userName_;
+ if (ref instanceof java.lang.String) {
+ return (java.lang.String) ref;
+ } else {
+ com.google.protobuf.ByteString bs =
+ (com.google.protobuf.ByteString) ref;
+ java.lang.String s = bs.toStringUtf8();
+ if (bs.isValidUtf8()) {
+ userName_ = s;
+ }
+ return s;
+ }
+ }
+ /**
+ * optional string userName = 2;
+ */
+ public com.google.protobuf.ByteString
+ getUserNameBytes() {
+ java.lang.Object ref = userName_;
+ if (ref instanceof java.lang.String) {
+ com.google.protobuf.ByteString b =
+ com.google.protobuf.ByteString.copyFromUtf8(
+ (java.lang.String) ref);
+ userName_ = b;
+ return b;
+ } else {
+ return (com.google.protobuf.ByteString) ref;
+ }
+ }
+
+ // optional int32 force = 3;
+ public static final int FORCE_FIELD_NUMBER = 3;
+ private int force_;
+ /**
+ * optional int32 force = 3;
+ */
+ public boolean hasForce() {
+ return ((bitField0_ & 0x00000004) == 0x00000004);
+ }
+ /**
+ * optional int32 force = 3;
+ */
+ public int getForce() {
+ return force_;
+ }
+
+ // optional string guildName = 4;
+ public static final int GUILDNAME_FIELD_NUMBER = 4;
+ private java.lang.Object guildName_;
+ /**
+ * optional string guildName = 4;
+ */
+ public boolean hasGuildName() {
+ return ((bitField0_ & 0x00000008) == 0x00000008);
+ }
+ /**
+ * optional string guildName = 4;
+ */
+ public java.lang.String getGuildName() {
+ java.lang.Object ref = guildName_;
+ if (ref instanceof java.lang.String) {
+ return (java.lang.String) ref;
+ } else {
+ com.google.protobuf.ByteString bs =
+ (com.google.protobuf.ByteString) ref;
+ java.lang.String s = bs.toStringUtf8();
+ if (bs.isValidUtf8()) {
+ guildName_ = s;
+ }
+ return s;
+ }
+ }
+ /**
+ * optional string guildName = 4;
+ */
+ public com.google.protobuf.ByteString
+ getGuildNameBytes() {
+ java.lang.Object ref = guildName_;
+ if (ref instanceof java.lang.String) {
+ com.google.protobuf.ByteString b =
+ com.google.protobuf.ByteString.copyFromUtf8(
+ (java.lang.String) ref);
+ guildName_ = b;
+ return b;
+ } else {
+ return (com.google.protobuf.ByteString) ref;
+ }
+ }
+
+ // optional int32 score = 5;
+ public static final int SCORE_FIELD_NUMBER = 5;
+ private int score_;
+ /**
+ * optional int32 score = 5;
+ */
+ public boolean hasScore() {
+ return ((bitField0_ & 0x00000010) == 0x00000010);
+ }
+ /**
+ * optional int32 score = 5;
+ */
+ public int getScore() {
+ return score_;
+ }
+
+ // optional int32 hadChallenge = 6;
+ public static final int HADCHALLENGE_FIELD_NUMBER = 6;
+ private int hadChallenge_;
+ /**
+ * optional int32 hadChallenge = 6;
+ *
+ * + * 是否已挑战过,1:表示挑战过,2:未挑战过。 + *+ */ + public boolean hasHadChallenge() { + return ((bitField0_ & 0x00000020) == 0x00000020); + } + /** + *
optional int32 hadChallenge = 6;
+ *
+ * + * 是否已挑战过,1:表示挑战过,2:未挑战过。 + *+ */ + public int getHadChallenge() { + return hadChallenge_; + } + + // optional int32 rank = 7; + public static final int RANK_FIELD_NUMBER = 7; + private int rank_; + /** + *
optional int32 rank = 7;
+ */
+ public boolean hasRank() {
+ return ((bitField0_ & 0x00000040) == 0x00000040);
+ }
+ /**
+ * optional int32 rank = 7;
+ */
+ public int getRank() {
+ return rank_;
+ }
+
+ // optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ public static final int TEAMINFO_FIELD_NUMBER = 8;
+ private com.ljsd.jieling.protocols.CommonProto.TeamOneInfo teamInfo_;
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ public boolean hasTeamInfo() {
+ return ((bitField0_ & 0x00000080) == 0x00000080);
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.TeamOneInfo getTeamInfo() {
+ return teamInfo_;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.TeamOneInfoOrBuilder getTeamInfoOrBuilder() {
+ return teamInfo_;
+ }
+
+ private void initFields() {
+ uid_ = 0;
+ userName_ = "";
+ force_ = 0;
+ guildName_ = "";
+ score_ = 0;
+ hadChallenge_ = 0;
+ rank_ = 0;
+ teamInfo_ = com.ljsd.jieling.protocols.CommonProto.TeamOneInfo.getDefaultInstance();
+ }
+ private byte memoizedIsInitialized = -1;
+ public final boolean isInitialized() {
+ byte isInitialized = memoizedIsInitialized;
+ if (isInitialized != -1) return isInitialized == 1;
+
+ memoizedIsInitialized = 1;
+ return true;
+ }
+
+ public void writeTo(com.google.protobuf.CodedOutputStream output)
+ throws java.io.IOException {
+ getSerializedSize();
+ if (((bitField0_ & 0x00000001) == 0x00000001)) {
+ output.writeInt32(1, uid_);
+ }
+ if (((bitField0_ & 0x00000002) == 0x00000002)) {
+ output.writeBytes(2, getUserNameBytes());
+ }
+ if (((bitField0_ & 0x00000004) == 0x00000004)) {
+ output.writeInt32(3, force_);
+ }
+ if (((bitField0_ & 0x00000008) == 0x00000008)) {
+ output.writeBytes(4, getGuildNameBytes());
+ }
+ if (((bitField0_ & 0x00000010) == 0x00000010)) {
+ output.writeInt32(5, score_);
+ }
+ if (((bitField0_ & 0x00000020) == 0x00000020)) {
+ output.writeInt32(6, hadChallenge_);
+ }
+ if (((bitField0_ & 0x00000040) == 0x00000040)) {
+ output.writeInt32(7, rank_);
+ }
+ if (((bitField0_ & 0x00000080) == 0x00000080)) {
+ output.writeMessage(8, teamInfo_);
+ }
+ getUnknownFields().writeTo(output);
+ }
+
+ private int memoizedSerializedSize = -1;
+ public int getSerializedSize() {
+ int size = memoizedSerializedSize;
+ if (size != -1) return size;
+
+ size = 0;
+ if (((bitField0_ & 0x00000001) == 0x00000001)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeInt32Size(1, uid_);
+ }
+ if (((bitField0_ & 0x00000002) == 0x00000002)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeBytesSize(2, getUserNameBytes());
+ }
+ if (((bitField0_ & 0x00000004) == 0x00000004)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeInt32Size(3, force_);
+ }
+ if (((bitField0_ & 0x00000008) == 0x00000008)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeBytesSize(4, getGuildNameBytes());
+ }
+ if (((bitField0_ & 0x00000010) == 0x00000010)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeInt32Size(5, score_);
+ }
+ if (((bitField0_ & 0x00000020) == 0x00000020)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeInt32Size(6, hadChallenge_);
+ }
+ if (((bitField0_ & 0x00000040) == 0x00000040)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeInt32Size(7, rank_);
+ }
+ if (((bitField0_ & 0x00000080) == 0x00000080)) {
+ size += com.google.protobuf.CodedOutputStream
+ .computeMessageSize(8, teamInfo_);
+ }
+ size += getUnknownFields().getSerializedSize();
+ memoizedSerializedSize = size;
+ return size;
+ }
+
+ private static final long serialVersionUID = 0L;
+ @java.lang.Override
+ protected java.lang.Object writeReplace()
+ throws java.io.ObjectStreamException {
+ return super.writeReplace();
+ }
+
+ public static com.ljsd.jieling.protocols.Family.CarChallengeItem parseFrom(
+ com.google.protobuf.ByteString data)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data);
+ }
+ public static com.ljsd.jieling.protocols.Family.CarChallengeItem parseFrom(
+ com.google.protobuf.ByteString data,
+ com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data, extensionRegistry);
+ }
+ public static com.ljsd.jieling.protocols.Family.CarChallengeItem parseFrom(byte[] data)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data);
+ }
+ public static com.ljsd.jieling.protocols.Family.CarChallengeItem parseFrom(
+ byte[] data,
+ com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws com.google.protobuf.InvalidProtocolBufferException {
+ return PARSER.parseFrom(data, extensionRegistry);
+ }
+ public static com.ljsd.jieling.protocols.Family.CarChallengeItem parseFrom(java.io.InputStream input)
+ throws java.io.IOException {
+ return PARSER.parseFrom(input);
+ }
+ public static com.ljsd.jieling.protocols.Family.CarChallengeItem parseFrom(
+ java.io.InputStream input,
+ com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws java.io.IOException {
+ return PARSER.parseFrom(input, extensionRegistry);
+ }
+ public static com.ljsd.jieling.protocols.Family.CarChallengeItem parseDelimitedFrom(java.io.InputStream input)
+ throws java.io.IOException {
+ return PARSER.parseDelimitedFrom(input);
+ }
+ public static com.ljsd.jieling.protocols.Family.CarChallengeItem parseDelimitedFrom(
+ java.io.InputStream input,
+ com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws java.io.IOException {
+ return PARSER.parseDelimitedFrom(input, extensionRegistry);
+ }
+ public static com.ljsd.jieling.protocols.Family.CarChallengeItem parseFrom(
+ com.google.protobuf.CodedInputStream input)
+ throws java.io.IOException {
+ return PARSER.parseFrom(input);
+ }
+ public static com.ljsd.jieling.protocols.Family.CarChallengeItem parseFrom(
+ com.google.protobuf.CodedInputStream input,
+ com.google.protobuf.ExtensionRegistryLite extensionRegistry)
+ throws java.io.IOException {
+ return PARSER.parseFrom(input, extensionRegistry);
+ }
+
+ public static Builder newBuilder() { return Builder.create(); }
+ public Builder newBuilderForType() { return newBuilder(); }
+ public static Builder newBuilder(com.ljsd.jieling.protocols.Family.CarChallengeItem prototype) {
+ return newBuilder().mergeFrom(prototype);
+ }
+ public Builder toBuilder() { return newBuilder(this); }
+
+ @java.lang.Override
+ protected Builder newBuilderForType(
+ com.google.protobuf.GeneratedMessage.BuilderParent parent) {
+ Builder builder = new Builder(parent);
+ return builder;
+ }
+ /**
+ * Protobuf type {@code com.ljsd.jieling.protocols.CarChallengeItem}
+ */
+ public static final class Builder extends
+ com.google.protobuf.GeneratedMessage.Builderoptional int32 uid = 1;
+ */
+ public boolean hasUid() {
+ return ((bitField0_ & 0x00000001) == 0x00000001);
+ }
+ /**
+ * optional int32 uid = 1;
+ */
+ public int getUid() {
+ return uid_;
+ }
+ /**
+ * optional int32 uid = 1;
+ */
+ public Builder setUid(int value) {
+ bitField0_ |= 0x00000001;
+ uid_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 uid = 1;
+ */
+ public Builder clearUid() {
+ bitField0_ = (bitField0_ & ~0x00000001);
+ uid_ = 0;
+ onChanged();
+ return this;
+ }
+
+ // optional string userName = 2;
+ private java.lang.Object userName_ = "";
+ /**
+ * optional string userName = 2;
+ */
+ public boolean hasUserName() {
+ return ((bitField0_ & 0x00000002) == 0x00000002);
+ }
+ /**
+ * optional string userName = 2;
+ */
+ public java.lang.String getUserName() {
+ java.lang.Object ref = userName_;
+ if (!(ref instanceof java.lang.String)) {
+ java.lang.String s = ((com.google.protobuf.ByteString) ref)
+ .toStringUtf8();
+ userName_ = s;
+ return s;
+ } else {
+ return (java.lang.String) ref;
+ }
+ }
+ /**
+ * optional string userName = 2;
+ */
+ public com.google.protobuf.ByteString
+ getUserNameBytes() {
+ java.lang.Object ref = userName_;
+ if (ref instanceof String) {
+ com.google.protobuf.ByteString b =
+ com.google.protobuf.ByteString.copyFromUtf8(
+ (java.lang.String) ref);
+ userName_ = b;
+ return b;
+ } else {
+ return (com.google.protobuf.ByteString) ref;
+ }
+ }
+ /**
+ * optional string userName = 2;
+ */
+ public Builder setUserName(
+ java.lang.String value) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ bitField0_ |= 0x00000002;
+ userName_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional string userName = 2;
+ */
+ public Builder clearUserName() {
+ bitField0_ = (bitField0_ & ~0x00000002);
+ userName_ = getDefaultInstance().getUserName();
+ onChanged();
+ return this;
+ }
+ /**
+ * optional string userName = 2;
+ */
+ public Builder setUserNameBytes(
+ com.google.protobuf.ByteString value) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ bitField0_ |= 0x00000002;
+ userName_ = value;
+ onChanged();
+ return this;
+ }
+
+ // optional int32 force = 3;
+ private int force_ ;
+ /**
+ * optional int32 force = 3;
+ */
+ public boolean hasForce() {
+ return ((bitField0_ & 0x00000004) == 0x00000004);
+ }
+ /**
+ * optional int32 force = 3;
+ */
+ public int getForce() {
+ return force_;
+ }
+ /**
+ * optional int32 force = 3;
+ */
+ public Builder setForce(int value) {
+ bitField0_ |= 0x00000004;
+ force_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 force = 3;
+ */
+ public Builder clearForce() {
+ bitField0_ = (bitField0_ & ~0x00000004);
+ force_ = 0;
+ onChanged();
+ return this;
+ }
+
+ // optional string guildName = 4;
+ private java.lang.Object guildName_ = "";
+ /**
+ * optional string guildName = 4;
+ */
+ public boolean hasGuildName() {
+ return ((bitField0_ & 0x00000008) == 0x00000008);
+ }
+ /**
+ * optional string guildName = 4;
+ */
+ public java.lang.String getGuildName() {
+ java.lang.Object ref = guildName_;
+ if (!(ref instanceof java.lang.String)) {
+ java.lang.String s = ((com.google.protobuf.ByteString) ref)
+ .toStringUtf8();
+ guildName_ = s;
+ return s;
+ } else {
+ return (java.lang.String) ref;
+ }
+ }
+ /**
+ * optional string guildName = 4;
+ */
+ public com.google.protobuf.ByteString
+ getGuildNameBytes() {
+ java.lang.Object ref = guildName_;
+ if (ref instanceof String) {
+ com.google.protobuf.ByteString b =
+ com.google.protobuf.ByteString.copyFromUtf8(
+ (java.lang.String) ref);
+ guildName_ = b;
+ return b;
+ } else {
+ return (com.google.protobuf.ByteString) ref;
+ }
+ }
+ /**
+ * optional string guildName = 4;
+ */
+ public Builder setGuildName(
+ java.lang.String value) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ bitField0_ |= 0x00000008;
+ guildName_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional string guildName = 4;
+ */
+ public Builder clearGuildName() {
+ bitField0_ = (bitField0_ & ~0x00000008);
+ guildName_ = getDefaultInstance().getGuildName();
+ onChanged();
+ return this;
+ }
+ /**
+ * optional string guildName = 4;
+ */
+ public Builder setGuildNameBytes(
+ com.google.protobuf.ByteString value) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ bitField0_ |= 0x00000008;
+ guildName_ = value;
+ onChanged();
+ return this;
+ }
+
+ // optional int32 score = 5;
+ private int score_ ;
+ /**
+ * optional int32 score = 5;
+ */
+ public boolean hasScore() {
+ return ((bitField0_ & 0x00000010) == 0x00000010);
+ }
+ /**
+ * optional int32 score = 5;
+ */
+ public int getScore() {
+ return score_;
+ }
+ /**
+ * optional int32 score = 5;
+ */
+ public Builder setScore(int value) {
+ bitField0_ |= 0x00000010;
+ score_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 score = 5;
+ */
+ public Builder clearScore() {
+ bitField0_ = (bitField0_ & ~0x00000010);
+ score_ = 0;
+ onChanged();
+ return this;
+ }
+
+ // optional int32 hadChallenge = 6;
+ private int hadChallenge_ ;
+ /**
+ * optional int32 hadChallenge = 6;
+ *
+ * + * 是否已挑战过,1:表示挑战过,2:未挑战过。 + *+ */ + public boolean hasHadChallenge() { + return ((bitField0_ & 0x00000020) == 0x00000020); + } + /** + *
optional int32 hadChallenge = 6;
+ *
+ * + * 是否已挑战过,1:表示挑战过,2:未挑战过。 + *+ */ + public int getHadChallenge() { + return hadChallenge_; + } + /** + *
optional int32 hadChallenge = 6;
+ *
+ * + * 是否已挑战过,1:表示挑战过,2:未挑战过。 + *+ */ + public Builder setHadChallenge(int value) { + bitField0_ |= 0x00000020; + hadChallenge_ = value; + onChanged(); + return this; + } + /** + *
optional int32 hadChallenge = 6;
+ *
+ * + * 是否已挑战过,1:表示挑战过,2:未挑战过。 + *+ */ + public Builder clearHadChallenge() { + bitField0_ = (bitField0_ & ~0x00000020); + hadChallenge_ = 0; + onChanged(); + return this; + } + + // optional int32 rank = 7; + private int rank_ ; + /** + *
optional int32 rank = 7;
+ */
+ public boolean hasRank() {
+ return ((bitField0_ & 0x00000040) == 0x00000040);
+ }
+ /**
+ * optional int32 rank = 7;
+ */
+ public int getRank() {
+ return rank_;
+ }
+ /**
+ * optional int32 rank = 7;
+ */
+ public Builder setRank(int value) {
+ bitField0_ |= 0x00000040;
+ rank_ = value;
+ onChanged();
+ return this;
+ }
+ /**
+ * optional int32 rank = 7;
+ */
+ public Builder clearRank() {
+ bitField0_ = (bitField0_ & ~0x00000040);
+ rank_ = 0;
+ onChanged();
+ return this;
+ }
+
+ // optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ private com.ljsd.jieling.protocols.CommonProto.TeamOneInfo teamInfo_ = com.ljsd.jieling.protocols.CommonProto.TeamOneInfo.getDefaultInstance();
+ private com.google.protobuf.SingleFieldBuilder<
+ com.ljsd.jieling.protocols.CommonProto.TeamOneInfo, com.ljsd.jieling.protocols.CommonProto.TeamOneInfo.Builder, com.ljsd.jieling.protocols.CommonProto.TeamOneInfoOrBuilder> teamInfoBuilder_;
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ public boolean hasTeamInfo() {
+ return ((bitField0_ & 0x00000080) == 0x00000080);
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.TeamOneInfo getTeamInfo() {
+ if (teamInfoBuilder_ == null) {
+ return teamInfo_;
+ } else {
+ return teamInfoBuilder_.getMessage();
+ }
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ public Builder setTeamInfo(com.ljsd.jieling.protocols.CommonProto.TeamOneInfo value) {
+ if (teamInfoBuilder_ == null) {
+ if (value == null) {
+ throw new NullPointerException();
+ }
+ teamInfo_ = value;
+ onChanged();
+ } else {
+ teamInfoBuilder_.setMessage(value);
+ }
+ bitField0_ |= 0x00000080;
+ return this;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ public Builder setTeamInfo(
+ com.ljsd.jieling.protocols.CommonProto.TeamOneInfo.Builder builderForValue) {
+ if (teamInfoBuilder_ == null) {
+ teamInfo_ = builderForValue.build();
+ onChanged();
+ } else {
+ teamInfoBuilder_.setMessage(builderForValue.build());
+ }
+ bitField0_ |= 0x00000080;
+ return this;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ public Builder mergeTeamInfo(com.ljsd.jieling.protocols.CommonProto.TeamOneInfo value) {
+ if (teamInfoBuilder_ == null) {
+ if (((bitField0_ & 0x00000080) == 0x00000080) &&
+ teamInfo_ != com.ljsd.jieling.protocols.CommonProto.TeamOneInfo.getDefaultInstance()) {
+ teamInfo_ =
+ com.ljsd.jieling.protocols.CommonProto.TeamOneInfo.newBuilder(teamInfo_).mergeFrom(value).buildPartial();
+ } else {
+ teamInfo_ = value;
+ }
+ onChanged();
+ } else {
+ teamInfoBuilder_.mergeFrom(value);
+ }
+ bitField0_ |= 0x00000080;
+ return this;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ public Builder clearTeamInfo() {
+ if (teamInfoBuilder_ == null) {
+ teamInfo_ = com.ljsd.jieling.protocols.CommonProto.TeamOneInfo.getDefaultInstance();
+ onChanged();
+ } else {
+ teamInfoBuilder_.clear();
+ }
+ bitField0_ = (bitField0_ & ~0x00000080);
+ return this;
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.TeamOneInfo.Builder getTeamInfoBuilder() {
+ bitField0_ |= 0x00000080;
+ onChanged();
+ return getTeamInfoFieldBuilder().getBuilder();
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ public com.ljsd.jieling.protocols.CommonProto.TeamOneInfoOrBuilder getTeamInfoOrBuilder() {
+ if (teamInfoBuilder_ != null) {
+ return teamInfoBuilder_.getMessageOrBuilder();
+ } else {
+ return teamInfo_;
+ }
+ }
+ /**
+ * optional .com.ljsd.jieling.protocols.TeamOneInfo teamInfo = 8;
+ */
+ private com.google.protobuf.SingleFieldBuilder<
+ com.ljsd.jieling.protocols.CommonProto.TeamOneInfo, com.ljsd.jieling.protocols.CommonProto.TeamOneInfo.Builder, com.ljsd.jieling.protocols.CommonProto.TeamOneInfoOrBuilder>
+ getTeamInfoFieldBuilder() {
+ if (teamInfoBuilder_ == null) {
+ teamInfoBuilder_ = new com.google.protobuf.SingleFieldBuilder<
+ com.ljsd.jieling.protocols.CommonProto.TeamOneInfo, com.ljsd.jieling.protocols.CommonProto.TeamOneInfo.Builder, com.ljsd.jieling.protocols.CommonProto.TeamOneInfoOrBuilder>(
+ teamInfo_,
+ getParentForChildren(),
+ isClean());
+ teamInfo_ = null;
+ }
+ return teamInfoBuilder_;
+ }
+
+ // @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.CarChallengeItem)
+ }
+
+ static {
+ defaultInstance = new CarChallengeItem(true);
+ defaultInstance.initFields();
+ }
+
+ // @@protoc_insertion_point(class_scope:com.ljsd.jieling.protocols.CarChallengeItem)
+ }
+
public interface GetCarChallenegListResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder {
- // repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ // repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- java.util.Listrepeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- com.ljsd.jieling.protocols.CommonProto.RankInfo getRankInfo(int index);
+ com.ljsd.jieling.protocols.Family.CarChallengeItem getCarChallengeItem(int index);
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- int getRankInfoCount();
+ int getCarChallengeItemCount();
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- java.util.List extends com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder>
- getRankInfoOrBuilderList();
+ java.util.List extends com.ljsd.jieling.protocols.Family.CarChallengeItemOrBuilder>
+ getCarChallengeItemOrBuilderList();
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder getRankInfoOrBuilder(
+ com.ljsd.jieling.protocols.Family.CarChallengeItemOrBuilder getCarChallengeItemOrBuilder(
int index);
// optional int32 myRank = 2;
@@ -44836,10 +46092,10 @@ public final class Family {
}
case 10: {
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
- rankInfo_ = new java.util.ArrayListrepeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public java.util.Listrepeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public java.util.List extends com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder>
- getRankInfoOrBuilderList() {
- return rankInfo_;
+ public java.util.List extends com.ljsd.jieling.protocols.Family.CarChallengeItemOrBuilder>
+ getCarChallengeItemOrBuilderList() {
+ return carChallengeItem_;
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public int getRankInfoCount() {
- return rankInfo_.size();
+ public int getCarChallengeItemCount() {
+ return carChallengeItem_.size();
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public com.ljsd.jieling.protocols.CommonProto.RankInfo getRankInfo(int index) {
- return rankInfo_.get(index);
+ public com.ljsd.jieling.protocols.Family.CarChallengeItem getCarChallengeItem(int index) {
+ return carChallengeItem_.get(index);
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder getRankInfoOrBuilder(
+ public com.ljsd.jieling.protocols.Family.CarChallengeItemOrBuilder getCarChallengeItemOrBuilder(
int index) {
- return rankInfo_.get(index);
+ return carChallengeItem_.get(index);
}
// optional int32 myRank = 2;
@@ -44980,7 +46236,7 @@ public final class Family {
}
private void initFields() {
- rankInfo_ = java.util.Collections.emptyList();
+ carChallengeItem_ = java.util.Collections.emptyList();
myRank_ = 0;
myScore_ = 0;
}
@@ -44996,8 +46252,8 @@ public final class Family {
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
- for (int i = 0; i < rankInfo_.size(); i++) {
- output.writeMessage(1, rankInfo_.get(i));
+ for (int i = 0; i < carChallengeItem_.size(); i++) {
+ output.writeMessage(1, carChallengeItem_.get(i));
}
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeInt32(2, myRank_);
@@ -45014,9 +46270,9 @@ public final class Family {
if (size != -1) return size;
size = 0;
- for (int i = 0; i < rankInfo_.size(); i++) {
+ for (int i = 0; i < carChallengeItem_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
- .computeMessageSize(1, rankInfo_.get(i));
+ .computeMessageSize(1, carChallengeItem_.get(i));
}
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
@@ -45134,7 +46390,7 @@ public final class Family {
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
- getRankInfoFieldBuilder();
+ getCarChallengeItemFieldBuilder();
}
}
private static Builder create() {
@@ -45143,11 +46399,11 @@ public final class Family {
public Builder clear() {
super.clear();
- if (rankInfoBuilder_ == null) {
- rankInfo_ = java.util.Collections.emptyList();
+ if (carChallengeItemBuilder_ == null) {
+ carChallengeItem_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
- rankInfoBuilder_.clear();
+ carChallengeItemBuilder_.clear();
}
myRank_ = 0;
bitField0_ = (bitField0_ & ~0x00000002);
@@ -45181,14 +46437,14 @@ public final class Family {
com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse result = new com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
- if (rankInfoBuilder_ == null) {
+ if (carChallengeItemBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001)) {
- rankInfo_ = java.util.Collections.unmodifiableList(rankInfo_);
+ carChallengeItem_ = java.util.Collections.unmodifiableList(carChallengeItem_);
bitField0_ = (bitField0_ & ~0x00000001);
}
- result.rankInfo_ = rankInfo_;
+ result.carChallengeItem_ = carChallengeItem_;
} else {
- result.rankInfo_ = rankInfoBuilder_.build();
+ result.carChallengeItem_ = carChallengeItemBuilder_.build();
}
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000001;
@@ -45214,29 +46470,29 @@ public final class Family {
public Builder mergeFrom(com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse other) {
if (other == com.ljsd.jieling.protocols.Family.GetCarChallenegListResponse.getDefaultInstance()) return this;
- if (rankInfoBuilder_ == null) {
- if (!other.rankInfo_.isEmpty()) {
- if (rankInfo_.isEmpty()) {
- rankInfo_ = other.rankInfo_;
+ if (carChallengeItemBuilder_ == null) {
+ if (!other.carChallengeItem_.isEmpty()) {
+ if (carChallengeItem_.isEmpty()) {
+ carChallengeItem_ = other.carChallengeItem_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
- ensureRankInfoIsMutable();
- rankInfo_.addAll(other.rankInfo_);
+ ensureCarChallengeItemIsMutable();
+ carChallengeItem_.addAll(other.carChallengeItem_);
}
onChanged();
}
} else {
- if (!other.rankInfo_.isEmpty()) {
- if (rankInfoBuilder_.isEmpty()) {
- rankInfoBuilder_.dispose();
- rankInfoBuilder_ = null;
- rankInfo_ = other.rankInfo_;
+ if (!other.carChallengeItem_.isEmpty()) {
+ if (carChallengeItemBuilder_.isEmpty()) {
+ carChallengeItemBuilder_.dispose();
+ carChallengeItemBuilder_ = null;
+ carChallengeItem_ = other.carChallengeItem_;
bitField0_ = (bitField0_ & ~0x00000001);
- rankInfoBuilder_ =
+ carChallengeItemBuilder_ =
com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
- getRankInfoFieldBuilder() : null;
+ getCarChallengeItemFieldBuilder() : null;
} else {
- rankInfoBuilder_.addAllMessages(other.rankInfo_);
+ carChallengeItemBuilder_.addAllMessages(other.carChallengeItem_);
}
}
}
@@ -45273,244 +46529,244 @@ public final class Family {
}
private int bitField0_;
- // repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
- private java.util.Listrepeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public java.util.Listrepeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public int getRankInfoCount() {
- if (rankInfoBuilder_ == null) {
- return rankInfo_.size();
+ public int getCarChallengeItemCount() {
+ if (carChallengeItemBuilder_ == null) {
+ return carChallengeItem_.size();
} else {
- return rankInfoBuilder_.getCount();
+ return carChallengeItemBuilder_.getCount();
}
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public com.ljsd.jieling.protocols.CommonProto.RankInfo getRankInfo(int index) {
- if (rankInfoBuilder_ == null) {
- return rankInfo_.get(index);
+ public com.ljsd.jieling.protocols.Family.CarChallengeItem getCarChallengeItem(int index) {
+ if (carChallengeItemBuilder_ == null) {
+ return carChallengeItem_.get(index);
} else {
- return rankInfoBuilder_.getMessage(index);
+ return carChallengeItemBuilder_.getMessage(index);
}
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public Builder setRankInfo(
- int index, com.ljsd.jieling.protocols.CommonProto.RankInfo value) {
- if (rankInfoBuilder_ == null) {
+ public Builder setCarChallengeItem(
+ int index, com.ljsd.jieling.protocols.Family.CarChallengeItem value) {
+ if (carChallengeItemBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
- ensureRankInfoIsMutable();
- rankInfo_.set(index, value);
+ ensureCarChallengeItemIsMutable();
+ carChallengeItem_.set(index, value);
onChanged();
} else {
- rankInfoBuilder_.setMessage(index, value);
+ carChallengeItemBuilder_.setMessage(index, value);
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public Builder setRankInfo(
- int index, com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder builderForValue) {
- if (rankInfoBuilder_ == null) {
- ensureRankInfoIsMutable();
- rankInfo_.set(index, builderForValue.build());
+ public Builder setCarChallengeItem(
+ int index, com.ljsd.jieling.protocols.Family.CarChallengeItem.Builder builderForValue) {
+ if (carChallengeItemBuilder_ == null) {
+ ensureCarChallengeItemIsMutable();
+ carChallengeItem_.set(index, builderForValue.build());
onChanged();
} else {
- rankInfoBuilder_.setMessage(index, builderForValue.build());
+ carChallengeItemBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public Builder addRankInfo(com.ljsd.jieling.protocols.CommonProto.RankInfo value) {
- if (rankInfoBuilder_ == null) {
+ public Builder addCarChallengeItem(com.ljsd.jieling.protocols.Family.CarChallengeItem value) {
+ if (carChallengeItemBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
- ensureRankInfoIsMutable();
- rankInfo_.add(value);
+ ensureCarChallengeItemIsMutable();
+ carChallengeItem_.add(value);
onChanged();
} else {
- rankInfoBuilder_.addMessage(value);
+ carChallengeItemBuilder_.addMessage(value);
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public Builder addRankInfo(
- int index, com.ljsd.jieling.protocols.CommonProto.RankInfo value) {
- if (rankInfoBuilder_ == null) {
+ public Builder addCarChallengeItem(
+ int index, com.ljsd.jieling.protocols.Family.CarChallengeItem value) {
+ if (carChallengeItemBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
- ensureRankInfoIsMutable();
- rankInfo_.add(index, value);
+ ensureCarChallengeItemIsMutable();
+ carChallengeItem_.add(index, value);
onChanged();
} else {
- rankInfoBuilder_.addMessage(index, value);
+ carChallengeItemBuilder_.addMessage(index, value);
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public Builder addRankInfo(
- com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder builderForValue) {
- if (rankInfoBuilder_ == null) {
- ensureRankInfoIsMutable();
- rankInfo_.add(builderForValue.build());
+ public Builder addCarChallengeItem(
+ com.ljsd.jieling.protocols.Family.CarChallengeItem.Builder builderForValue) {
+ if (carChallengeItemBuilder_ == null) {
+ ensureCarChallengeItemIsMutable();
+ carChallengeItem_.add(builderForValue.build());
onChanged();
} else {
- rankInfoBuilder_.addMessage(builderForValue.build());
+ carChallengeItemBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public Builder addRankInfo(
- int index, com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder builderForValue) {
- if (rankInfoBuilder_ == null) {
- ensureRankInfoIsMutable();
- rankInfo_.add(index, builderForValue.build());
+ public Builder addCarChallengeItem(
+ int index, com.ljsd.jieling.protocols.Family.CarChallengeItem.Builder builderForValue) {
+ if (carChallengeItemBuilder_ == null) {
+ ensureCarChallengeItemIsMutable();
+ carChallengeItem_.add(index, builderForValue.build());
onChanged();
} else {
- rankInfoBuilder_.addMessage(index, builderForValue.build());
+ carChallengeItemBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public Builder addAllRankInfo(
- java.lang.Iterable extends com.ljsd.jieling.protocols.CommonProto.RankInfo> values) {
- if (rankInfoBuilder_ == null) {
- ensureRankInfoIsMutable();
- super.addAll(values, rankInfo_);
+ public Builder addAllCarChallengeItem(
+ java.lang.Iterable extends com.ljsd.jieling.protocols.Family.CarChallengeItem> values) {
+ if (carChallengeItemBuilder_ == null) {
+ ensureCarChallengeItemIsMutable();
+ super.addAll(values, carChallengeItem_);
onChanged();
} else {
- rankInfoBuilder_.addAllMessages(values);
+ carChallengeItemBuilder_.addAllMessages(values);
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public Builder clearRankInfo() {
- if (rankInfoBuilder_ == null) {
- rankInfo_ = java.util.Collections.emptyList();
+ public Builder clearCarChallengeItem() {
+ if (carChallengeItemBuilder_ == null) {
+ carChallengeItem_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
- rankInfoBuilder_.clear();
+ carChallengeItemBuilder_.clear();
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public Builder removeRankInfo(int index) {
- if (rankInfoBuilder_ == null) {
- ensureRankInfoIsMutable();
- rankInfo_.remove(index);
+ public Builder removeCarChallengeItem(int index) {
+ if (carChallengeItemBuilder_ == null) {
+ ensureCarChallengeItemIsMutable();
+ carChallengeItem_.remove(index);
onChanged();
} else {
- rankInfoBuilder_.remove(index);
+ carChallengeItemBuilder_.remove(index);
}
return this;
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder getRankInfoBuilder(
+ public com.ljsd.jieling.protocols.Family.CarChallengeItem.Builder getCarChallengeItemBuilder(
int index) {
- return getRankInfoFieldBuilder().getBuilder(index);
+ return getCarChallengeItemFieldBuilder().getBuilder(index);
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder getRankInfoOrBuilder(
+ public com.ljsd.jieling.protocols.Family.CarChallengeItemOrBuilder getCarChallengeItemOrBuilder(
int index) {
- if (rankInfoBuilder_ == null) {
- return rankInfo_.get(index); } else {
- return rankInfoBuilder_.getMessageOrBuilder(index);
+ if (carChallengeItemBuilder_ == null) {
+ return carChallengeItem_.get(index); } else {
+ return carChallengeItemBuilder_.getMessageOrBuilder(index);
}
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public java.util.List extends com.ljsd.jieling.protocols.CommonProto.RankInfoOrBuilder>
- getRankInfoOrBuilderList() {
- if (rankInfoBuilder_ != null) {
- return rankInfoBuilder_.getMessageOrBuilderList();
+ public java.util.List extends com.ljsd.jieling.protocols.Family.CarChallengeItemOrBuilder>
+ getCarChallengeItemOrBuilderList() {
+ if (carChallengeItemBuilder_ != null) {
+ return carChallengeItemBuilder_.getMessageOrBuilderList();
} else {
- return java.util.Collections.unmodifiableList(rankInfo_);
+ return java.util.Collections.unmodifiableList(carChallengeItem_);
}
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder addRankInfoBuilder() {
- return getRankInfoFieldBuilder().addBuilder(
- com.ljsd.jieling.protocols.CommonProto.RankInfo.getDefaultInstance());
+ public com.ljsd.jieling.protocols.Family.CarChallengeItem.Builder addCarChallengeItemBuilder() {
+ return getCarChallengeItemFieldBuilder().addBuilder(
+ com.ljsd.jieling.protocols.Family.CarChallengeItem.getDefaultInstance());
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public com.ljsd.jieling.protocols.CommonProto.RankInfo.Builder addRankInfoBuilder(
+ public com.ljsd.jieling.protocols.Family.CarChallengeItem.Builder addCarChallengeItemBuilder(
int index) {
- return getRankInfoFieldBuilder().addBuilder(
- index, com.ljsd.jieling.protocols.CommonProto.RankInfo.getDefaultInstance());
+ return getCarChallengeItemFieldBuilder().addBuilder(
+ index, com.ljsd.jieling.protocols.Family.CarChallengeItem.getDefaultInstance());
}
/**
- * repeated .com.ljsd.jieling.protocols.RankInfo rankInfo = 1;
+ * repeated .com.ljsd.jieling.protocols.CarChallengeItem carChallengeItem = 1;
*/
- public java.util.List