Tabnine Logo
ZooKeeperProtos$ReplicationPeer$Builder.ensureTableCfsIsMutable
Code IndexAdd Tabnine to your IDE (free)

How to use
ensureTableCfsIsMutable
method
in
org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos$ReplicationPeer$Builder

Best Java code snippets using org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos$ReplicationPeer$Builder.ensureTableCfsIsMutable (Showing top 20 results out of 315)

origin: apache/hbase

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder addTableCfs(org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF value) {
 if (tableCfsBuilder_ == null) {
  if (value == null) {
   throw new NullPointerException();
  }
  ensureTableCfsIsMutable();
  tableCfs_.add(value);
  onChanged();
 } else {
  tableCfsBuilder_.addMessage(value);
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder addTableCfs(
  int index, org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF value) {
 if (tableCfsBuilder_ == null) {
  if (value == null) {
   throw new NullPointerException();
  }
  ensureTableCfsIsMutable();
  tableCfs_.add(index, value);
  onChanged();
 } else {
  tableCfsBuilder_.addMessage(index, value);
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder setTableCfs(
  int index, org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF value) {
 if (tableCfsBuilder_ == null) {
  if (value == null) {
   throw new NullPointerException();
  }
  ensureTableCfsIsMutable();
  tableCfs_.set(index, value);
  onChanged();
 } else {
  tableCfsBuilder_.setMessage(index, value);
 }
 return this;
}
/**
origin: com.aliyun.hbase/alihbase-protocol

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder addTableCfs(
  int index, org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF.Builder builderForValue) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  tableCfs_.add(index, builderForValue.build());
  onChanged();
 } else {
  tableCfsBuilder_.addMessage(index, builderForValue.build());
 }
 return this;
}
/**
origin: org.apache.hbase/hbase-protocol

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder addTableCfs(org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF value) {
 if (tableCfsBuilder_ == null) {
  if (value == null) {
   throw new NullPointerException();
  }
  ensureTableCfsIsMutable();
  tableCfs_.add(value);
  onChanged();
 } else {
  tableCfsBuilder_.addMessage(value);
 }
 return this;
}
/**
origin: org.apache.hbase/hbase-protocol

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder addTableCfs(
  int index, org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF.Builder builderForValue) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  tableCfs_.add(index, builderForValue.build());
  onChanged();
 } else {
  tableCfsBuilder_.addMessage(index, builderForValue.build());
 }
 return this;
}
/**
origin: org.apache.hbase/hbase-protocol

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder setTableCfs(
  int index, org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF.Builder builderForValue) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  tableCfs_.set(index, builderForValue.build());
  onChanged();
 } else {
  tableCfsBuilder_.setMessage(index, builderForValue.build());
 }
 return this;
}
/**
origin: com.aliyun.hbase/alihbase-protocol

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder removeTableCfs(int index) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  tableCfs_.remove(index);
  onChanged();
 } else {
  tableCfsBuilder_.remove(index);
 }
 return this;
}
/**
origin: org.apache.hbase/hbase-protocol

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder addAllTableCfs(
  java.lang.Iterable<? extends org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF> values) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  super.addAll(values, tableCfs_);
  onChanged();
 } else {
  tableCfsBuilder_.addAllMessages(values);
 }
 return this;
}
/**
origin: org.apache.hbase/hbase-protocol

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder addTableCfs(
  org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF.Builder builderForValue) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  tableCfs_.add(builderForValue.build());
  onChanged();
 } else {
  tableCfsBuilder_.addMessage(builderForValue.build());
 }
 return this;
}
/**
origin: com.aliyun.hbase/alihbase-protocol

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder setTableCfs(
  int index, org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF.Builder builderForValue) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  tableCfs_.set(index, builderForValue.build());
  onChanged();
 } else {
  tableCfsBuilder_.setMessage(index, builderForValue.build());
 }
 return this;
}
/**
origin: com.aliyun.hbase/alihbase-protocol

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder addTableCfs(
  org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF.Builder builderForValue) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  tableCfs_.add(builderForValue.build());
  onChanged();
 } else {
  tableCfsBuilder_.addMessage(builderForValue.build());
 }
 return this;
}
/**
origin: com.aliyun.hbase/alihbase-protocol

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder addAllTableCfs(
  java.lang.Iterable<? extends org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF> values) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  super.addAll(values, tableCfs_);
  onChanged();
 } else {
  tableCfsBuilder_.addAllMessages(values);
 }
 return this;
}
/**
origin: org.apache.hbase/hbase-protocol

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder removeTableCfs(int index) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  tableCfs_.remove(index);
  onChanged();
 } else {
  tableCfsBuilder_.remove(index);
 }
 return this;
}
/**
origin: apache/hbase

 bitField0_ = (bitField0_ & ~0x00000010);
} else {
 ensureTableCfsIsMutable();
 tableCfs_.addAll(other.tableCfs_);
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder setTableCfs(
  int index, org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF.Builder builderForValue) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  tableCfs_.set(index, builderForValue.build());
  onChanged();
 } else {
  tableCfsBuilder_.setMessage(index, builderForValue.build());
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder addAllTableCfs(
  java.lang.Iterable<? extends org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF> values) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  super.addAll(values, tableCfs_);
  onChanged();
 } else {
  tableCfsBuilder_.addAllMessages(values);
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder addTableCfs(
  int index, org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF.Builder builderForValue) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  tableCfs_.add(index, builderForValue.build());
  onChanged();
 } else {
  tableCfsBuilder_.addMessage(index, builderForValue.build());
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder addTableCfs(
  org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos.TableCF.Builder builderForValue) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  tableCfs_.add(builderForValue.build());
  onChanged();
 } else {
  tableCfsBuilder_.addMessage(builderForValue.build());
 }
 return this;
}
/**
origin: apache/hbase

/**
 * <code>repeated .hbase.pb.TableCF table_cfs = 5;</code>
 */
public Builder removeTableCfs(int index) {
 if (tableCfsBuilder_ == null) {
  ensureTableCfsIsMutable();
  tableCfs_.remove(index);
  onChanged();
 } else {
  tableCfsBuilder_.remove(index);
 }
 return this;
}
/**
org.apache.hadoop.hbase.protobuf.generatedZooKeeperProtos$ReplicationPeer$BuilderensureTableCfsIsMutable

Popular methods of ZooKeeperProtos$ReplicationPeer$Builder

  • <init>
  • buildPartial
  • create
  • ensureConfigurationIsMutable
  • ensureDataIsMutable
  • getConfiguration
    repeated .hbase.pb.NameStringPair configuration = 4;
  • getConfigurationCount
    repeated .hbase.pb.NameStringPair configuration = 4;
  • getConfigurationFieldBuilder
  • getData
    repeated .hbase.pb.BytesBytesPair data = 3;
  • getDataCount
    repeated .hbase.pb.BytesBytesPair data = 3;
  • getDataFieldBuilder
  • getParentForChildren
  • getDataFieldBuilder,
  • getParentForChildren,
  • hasClusterkey,
  • isClean,
  • maybeForceBuilderInitialization,
  • mergeFrom,
  • mergeUnknownFields,
  • newUninitializedMessageException,
  • onBuilt,
  • onChanged

Popular in Java

  • Running tasks concurrently on multiple threads
  • setContentView (Activity)
  • onRequestPermissionsResult (Fragment)
  • setScale (BigDecimal)
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • JPanel (javax.swing)
  • Top Sublime Text plugins
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