Tabnine Logo
AdminProtos$GetStoreFileResponse.newBuilder
Code IndexAdd Tabnine to your IDE (free)

How to use
newBuilder
method
in
org.apache.hadoop.hbase.protobuf.generated.AdminProtos$GetStoreFileResponse

Best Java code snippets using org.apache.hadoop.hbase.protobuf.generated.AdminProtos$GetStoreFileResponse.newBuilder (Showing top 13 results out of 315)

origin: harbby/presto-connectors

@Override
@QosPriority(priority=HConstants.ADMIN_QOS)
public GetStoreFileResponse getStoreFile(final RpcController controller,
  final GetStoreFileRequest request) throws ServiceException {
 try {
  checkOpen();
  Region region = getRegion(request.getRegion());
  requestCount.increment();
  Set<byte[]> columnFamilies;
  if (request.getFamilyCount() == 0) {
   columnFamilies = region.getTableDesc().getFamiliesKeys();
  } else {
   columnFamilies = new TreeSet<byte[]>(Bytes.BYTES_RAWCOMPARATOR);
   for (ByteString cf: request.getFamilyList()) {
    columnFamilies.add(cf.toByteArray());
   }
  }
  int nCF = columnFamilies.size();
  List<String>  fileList = region.getStoreFileList(
   columnFamilies.toArray(new byte[nCF][]));
  GetStoreFileResponse.Builder builder = GetStoreFileResponse.newBuilder();
  builder.addAllStoreFile(fileList);
  return builder.build();
 } catch (IOException ie) {
  throw new ServiceException(ie);
 }
}
origin: harbby/presto-connectors

public Builder toBuilder() { return newBuilder(this); }
origin: com.aliyun.hbase/alihbase-protocol

public Builder toBuilder() { return newBuilder(this); }
origin: harbby/presto-connectors

public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetStoreFileResponse prototype) {
origin: org.apache.hbase/hbase-protocol

public Builder toBuilder() { return newBuilder(this); }
origin: com.aliyun.hbase/alihbase-protocol

public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetStoreFileResponse prototype) {
origin: org.apache.hbase/hbase-protocol

public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetStoreFileResponse prototype) {
origin: harbby/presto-connectors

public static Builder newBuilder(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetStoreFileResponse prototype) {
 return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
origin: com.aliyun.hbase/alihbase-protocol

public static Builder newBuilder(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetStoreFileResponse prototype) {
 return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
origin: org.apache.hbase/hbase-protocol

public static Builder newBuilder(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetStoreFileResponse prototype) {
 return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
origin: apache/hbase

public Builder toBuilder() { return newBuilder(this); }
origin: apache/hbase

public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetStoreFileResponse prototype) {
origin: apache/hbase

public static Builder newBuilder(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetStoreFileResponse prototype) {
 return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
org.apache.hadoop.hbase.protobuf.generatedAdminProtos$GetStoreFileResponsenewBuilder

Popular methods of AdminProtos$GetStoreFileResponse

  • <init>
  • getDefaultInstance
  • getDescriptorForType
  • getSerializedSize
  • getStoreFileCount
    repeated string store_file = 1;
  • getStoreFileList
    repeated string store_file = 1;
  • getUnknownFields
  • initFields
  • isInitialized
  • makeExtensionsImmutable
  • parseUnknownField
  • parseUnknownField

Popular in Java

  • Reactive rest calls using spring rest template
  • getExternalFilesDir (Context)
  • getSupportFragmentManager (FragmentActivity)
  • startActivity (Activity)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • JComboBox (javax.swing)
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Best plugins for Eclipse
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