Tabnine Logo
AdminProtos$OpenRegionRequest$Builder.onChanged
Code IndexAdd Tabnine to your IDE (free)

How to use
onChanged
method
in
org.apache.hadoop.hbase.protobuf.generated.AdminProtos$OpenRegionRequest$Builder

Best Java code snippets using org.apache.hadoop.hbase.protobuf.generated.AdminProtos$OpenRegionRequest$Builder.onChanged (Showing top 20 results out of 315)

origin: apache/hbase

/**
 * <code>repeated .hbase.pb.OpenRegionRequest.RegionOpenInfo open_info = 1;</code>
 */
public Builder clearOpenInfo() {
 if (openInfoBuilder_ == null) {
  openInfo_ = java.util.Collections.emptyList();
  bitField0_ = (bitField0_ & ~0x00000001);
  onChanged();
 } else {
  openInfoBuilder_.clear();
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.OpenRegionRequest.RegionOpenInfo open_info = 1;</code>
 */
public Builder addOpenInfo(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.OpenRegionRequest.RegionOpenInfo value) {
 if (openInfoBuilder_ == null) {
  if (value == null) {
   throw new NullPointerException();
  }
  ensureOpenInfoIsMutable();
  openInfo_.add(value);
  onChanged();
 } else {
  openInfoBuilder_.addMessage(value);
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.OpenRegionRequest.RegionOpenInfo open_info = 1;</code>
 */
public Builder addOpenInfo(
  int index, org.apache.hadoop.hbase.protobuf.generated.AdminProtos.OpenRegionRequest.RegionOpenInfo value) {
 if (openInfoBuilder_ == null) {
  if (value == null) {
   throw new NullPointerException();
  }
  ensureOpenInfoIsMutable();
  openInfo_.add(index, value);
  onChanged();
 } else {
  openInfoBuilder_.addMessage(index, value);
 }
 return this;
}
/**
origin: com.aliyun.hbase/alihbase-protocol

/**
 * <code>repeated .hbase.pb.OpenRegionRequest.RegionOpenInfo open_info = 1;</code>
 */
public Builder removeOpenInfo(int index) {
 if (openInfoBuilder_ == null) {
  ensureOpenInfoIsMutable();
  openInfo_.remove(index);
  onChanged();
 } else {
  openInfoBuilder_.remove(index);
 }
 return this;
}
/**
origin: org.apache.hbase/hbase-protocol

/**
 * <code>optional uint64 serverStartCode = 2;</code>
 *
 * <pre>
 * the intended server for this RPC.
 * </pre>
 */
public Builder clearServerStartCode() {
 bitField0_ = (bitField0_ & ~0x00000002);
 serverStartCode_ = 0L;
 onChanged();
 return this;
}
origin: org.apache.hbase/hbase-protocol

/**
 * <code>optional uint64 master_system_time = 5;</code>
 *
 * <pre>
 * wall clock time from master
 * </pre>
 */
public Builder clearMasterSystemTime() {
 bitField0_ = (bitField0_ & ~0x00000004);
 masterSystemTime_ = 0L;
 onChanged();
 return this;
}
origin: harbby/presto-connectors

/**
 * <code>optional uint64 master_system_time = 5;</code>
 *
 * <pre>
 * wall clock time from master
 * </pre>
 */
public Builder clearMasterSystemTime() {
 bitField0_ = (bitField0_ & ~0x00000004);
 masterSystemTime_ = 0L;
 onChanged();
 return this;
}
origin: org.apache.hbase/hbase-protocol

/**
 * <code>optional uint64 master_system_time = 5;</code>
 *
 * <pre>
 * wall clock time from master
 * </pre>
 */
public Builder setMasterSystemTime(long value) {
 bitField0_ |= 0x00000004;
 masterSystemTime_ = value;
 onChanged();
 return this;
}
/**
origin: org.apache.hbase/hbase-protocol

/**
 * <code>optional uint64 serverStartCode = 2;</code>
 *
 * <pre>
 * the intended server for this RPC.
 * </pre>
 */
public Builder setServerStartCode(long value) {
 bitField0_ |= 0x00000002;
 serverStartCode_ = value;
 onChanged();
 return this;
}
/**
origin: apache/hbase

 openInfo_.addAll(other.openInfo_);
onChanged();
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.OpenRegionRequest.RegionOpenInfo open_info = 1;</code>
 */
public Builder setOpenInfo(
  int index, org.apache.hadoop.hbase.protobuf.generated.AdminProtos.OpenRegionRequest.RegionOpenInfo value) {
 if (openInfoBuilder_ == null) {
  if (value == null) {
   throw new NullPointerException();
  }
  ensureOpenInfoIsMutable();
  openInfo_.set(index, value);
  onChanged();
 } else {
  openInfoBuilder_.setMessage(index, value);
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.OpenRegionRequest.RegionOpenInfo open_info = 1;</code>
 */
public Builder addAllOpenInfo(
  java.lang.Iterable<? extends org.apache.hadoop.hbase.protobuf.generated.AdminProtos.OpenRegionRequest.RegionOpenInfo> values) {
 if (openInfoBuilder_ == null) {
  ensureOpenInfoIsMutable();
  super.addAll(values, openInfo_);
  onChanged();
 } else {
  openInfoBuilder_.addAllMessages(values);
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>optional uint64 master_system_time = 5;</code>
 *
 * <pre>
 * wall clock time from master
 * </pre>
 */
public Builder setMasterSystemTime(long value) {
 bitField0_ |= 0x00000004;
 masterSystemTime_ = value;
 onChanged();
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.OpenRegionRequest.RegionOpenInfo open_info = 1;</code>
 */
public Builder addOpenInfo(
  int index, org.apache.hadoop.hbase.protobuf.generated.AdminProtos.OpenRegionRequest.RegionOpenInfo.Builder builderForValue) {
 if (openInfoBuilder_ == null) {
  ensureOpenInfoIsMutable();
  openInfo_.add(index, builderForValue.build());
  onChanged();
 } else {
  openInfoBuilder_.addMessage(index, builderForValue.build());
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.OpenRegionRequest.RegionOpenInfo open_info = 1;</code>
 */
public Builder setOpenInfo(
  int index, org.apache.hadoop.hbase.protobuf.generated.AdminProtos.OpenRegionRequest.RegionOpenInfo.Builder builderForValue) {
 if (openInfoBuilder_ == null) {
  ensureOpenInfoIsMutable();
  openInfo_.set(index, builderForValue.build());
  onChanged();
 } else {
  openInfoBuilder_.setMessage(index, builderForValue.build());
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.OpenRegionRequest.RegionOpenInfo open_info = 1;</code>
 */
public Builder removeOpenInfo(int index) {
 if (openInfoBuilder_ == null) {
  ensureOpenInfoIsMutable();
  openInfo_.remove(index);
  onChanged();
 } else {
  openInfoBuilder_.remove(index);
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.OpenRegionRequest.RegionOpenInfo open_info = 1;</code>
 */
public Builder addOpenInfo(
  org.apache.hadoop.hbase.protobuf.generated.AdminProtos.OpenRegionRequest.RegionOpenInfo.Builder builderForValue) {
 if (openInfoBuilder_ == null) {
  ensureOpenInfoIsMutable();
  openInfo_.add(builderForValue.build());
  onChanged();
 } else {
  openInfoBuilder_.addMessage(builderForValue.build());
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>optional uint64 serverStartCode = 2;</code>
 *
 * <pre>
 * the intended server for this RPC.
 * </pre>
 */
public Builder setServerStartCode(long value) {
 bitField0_ |= 0x00000002;
 serverStartCode_ = value;
 onChanged();
 return this;
}
/**
origin: apache/hbase

/**
 * <code>optional uint64 master_system_time = 5;</code>
 *
 * <pre>
 * wall clock time from master
 * </pre>
 */
public Builder clearMasterSystemTime() {
 bitField0_ = (bitField0_ & ~0x00000004);
 masterSystemTime_ = 0L;
 onChanged();
 return this;
}
origin: apache/hbase

/**
 * <code>optional uint64 serverStartCode = 2;</code>
 *
 * <pre>
 * the intended server for this RPC.
 * </pre>
 */
public Builder clearServerStartCode() {
 bitField0_ = (bitField0_ & ~0x00000002);
 serverStartCode_ = 0L;
 onChanged();
 return this;
}
org.apache.hadoop.hbase.protobuf.generatedAdminProtos$OpenRegionRequest$BuilderonChanged

Popular methods of AdminProtos$OpenRegionRequest$Builder

  • <init>
  • buildPartial
  • create
  • ensureOpenInfoIsMutable
  • getOpenInfo
    repeated .hbase.pb.OpenRegionRequest.RegionOpenInfo open_info = 1;
  • getOpenInfoCount
    repeated .hbase.pb.OpenRegionRequest.RegionOpenInfo open_info = 1;
  • getOpenInfoFieldBuilder
  • getParentForChildren
  • isClean
  • maybeForceBuilderInitialization
  • mergeFrom
  • mergeUnknownFields
  • mergeFrom,
  • mergeUnknownFields,
  • newUninitializedMessageException,
  • onBuilt,
  • setMasterSystemTime,
  • setServerStartCode,
  • addOpenInfo,
  • build

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSharedPreferences (Context)
  • getResourceAsStream (ClassLoader)
  • runOnUiThread (Activity)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now