コード例 #1
0
 public Builder setCacheId(java.lang.String value) {
   if (value == null) {
     throw new NullPointerException();
   }
   result.hasCacheId = true;
   result.cacheId_ = value;
   return this;
 }
コード例 #2
0
 public Builder mergeFrom(
     com.alachisoft.tayzgrid.common.protobuf.GetCacheBindingCommandProtocol
             .GetCacheBindingCommand
         other) {
   if (other
       == com.alachisoft.tayzgrid.common.protobuf.GetCacheBindingCommandProtocol
           .GetCacheBindingCommand.getDefaultInstance()) return this;
   if (other.hasRequestId()) {
     setRequestId(other.getRequestId());
   }
   if (other.hasCacheId()) {
     setCacheId(other.getCacheId());
   }
   if (other.hasIsRunning()) {
     setIsRunning(other.getIsRunning());
   }
   if (other.hasIsDotnetClient()) {
     setIsDotnetClient(other.getIsDotnetClient());
   }
   this.mergeUnknownFields(other.getUnknownFields());
   return this;
 }
コード例 #3
0
 public Builder clearCacheId() {
   result.hasCacheId = false;
   result.cacheId_ = getDefaultInstance().getCacheId();
   return this;
 }
コード例 #4
0
 // optional string cacheId = 2;
 public boolean hasCacheId() {
   return result.hasCacheId();
 }