Tabnine Logo
AdminProtos$MergeRegionsRequest.hasMasterSystemTime
Code IndexAdd Tabnine to your IDE (free)

How to use
hasMasterSystemTime
method
in
org.apache.hadoop.hbase.protobuf.generated.AdminProtos$MergeRegionsRequest

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

origin: apache/hbase

@java.lang.Override
public int hashCode() {
 if (memoizedHashCode != 0) {
  return memoizedHashCode;
 }
 int hash = 41;
 hash = (19 * hash) + getDescriptorForType().hashCode();
 if (hasRegionA()) {
  hash = (37 * hash) + REGION_A_FIELD_NUMBER;
  hash = (53 * hash) + getRegionA().hashCode();
 }
 if (hasRegionB()) {
  hash = (37 * hash) + REGION_B_FIELD_NUMBER;
  hash = (53 * hash) + getRegionB().hashCode();
 }
 if (hasForcible()) {
  hash = (37 * hash) + FORCIBLE_FIELD_NUMBER;
  hash = (53 * hash) + hashBoolean(getForcible());
 }
 if (hasMasterSystemTime()) {
  hash = (37 * hash) + MASTER_SYSTEM_TIME_FIELD_NUMBER;
  hash = (53 * hash) + hashLong(getMasterSystemTime());
 }
 hash = (29 * hash) + getUnknownFields().hashCode();
 memoizedHashCode = hash;
 return hash;
}
origin: apache/hbase

   == other.getForcible());
result = result && (hasMasterSystemTime() == other.hasMasterSystemTime());
if (hasMasterSystemTime()) {
 result = result && (getMasterSystemTime()
   == other.getMasterSystemTime());
origin: com.aliyun.hbase/alihbase-protocol

@java.lang.Override
public int hashCode() {
 if (memoizedHashCode != 0) {
  return memoizedHashCode;
 }
 int hash = 41;
 hash = (19 * hash) + getDescriptorForType().hashCode();
 if (hasRegionA()) {
  hash = (37 * hash) + REGION_A_FIELD_NUMBER;
  hash = (53 * hash) + getRegionA().hashCode();
 }
 if (hasRegionB()) {
  hash = (37 * hash) + REGION_B_FIELD_NUMBER;
  hash = (53 * hash) + getRegionB().hashCode();
 }
 if (hasForcible()) {
  hash = (37 * hash) + FORCIBLE_FIELD_NUMBER;
  hash = (53 * hash) + hashBoolean(getForcible());
 }
 if (hasMasterSystemTime()) {
  hash = (37 * hash) + MASTER_SYSTEM_TIME_FIELD_NUMBER;
  hash = (53 * hash) + hashLong(getMasterSystemTime());
 }
 hash = (29 * hash) + getUnknownFields().hashCode();
 memoizedHashCode = hash;
 return hash;
}
origin: harbby/presto-connectors

Region regionB = getRegion(request.getRegionB());
boolean forcible = request.getForcible();
long masterSystemTime = request.hasMasterSystemTime() ? request.getMasterSystemTime() : -1;
regionA.startRegionOperation(Operation.MERGE_REGION);
regionB.startRegionOperation(Operation.MERGE_REGION);
origin: com.aliyun.hbase/alihbase-protocol

   == other.getForcible());
result = result && (hasMasterSystemTime() == other.hasMasterSystemTime());
if (hasMasterSystemTime()) {
 result = result && (getMasterSystemTime()
   == other.getMasterSystemTime());
origin: org.apache.hbase/hbase-protocol

   == other.getForcible());
result = result && (hasMasterSystemTime() == other.hasMasterSystemTime());
if (hasMasterSystemTime()) {
 result = result && (getMasterSystemTime()
   == other.getMasterSystemTime());
origin: harbby/presto-connectors

   == other.getForcible());
result = result && (hasMasterSystemTime() == other.hasMasterSystemTime());
if (hasMasterSystemTime()) {
 result = result && (getMasterSystemTime()
   == other.getMasterSystemTime());
origin: harbby/presto-connectors

@java.lang.Override
public int hashCode() {
 if (memoizedHashCode != 0) {
  return memoizedHashCode;
 }
 int hash = 41;
 hash = (19 * hash) + getDescriptorForType().hashCode();
 if (hasRegionA()) {
  hash = (37 * hash) + REGION_A_FIELD_NUMBER;
  hash = (53 * hash) + getRegionA().hashCode();
 }
 if (hasRegionB()) {
  hash = (37 * hash) + REGION_B_FIELD_NUMBER;
  hash = (53 * hash) + getRegionB().hashCode();
 }
 if (hasForcible()) {
  hash = (37 * hash) + FORCIBLE_FIELD_NUMBER;
  hash = (53 * hash) + hashBoolean(getForcible());
 }
 if (hasMasterSystemTime()) {
  hash = (37 * hash) + MASTER_SYSTEM_TIME_FIELD_NUMBER;
  hash = (53 * hash) + hashLong(getMasterSystemTime());
 }
 hash = (29 * hash) + getUnknownFields().hashCode();
 memoizedHashCode = hash;
 return hash;
}
origin: org.apache.hbase/hbase-protocol

@java.lang.Override
public int hashCode() {
 if (memoizedHashCode != 0) {
  return memoizedHashCode;
 }
 int hash = 41;
 hash = (19 * hash) + getDescriptorForType().hashCode();
 if (hasRegionA()) {
  hash = (37 * hash) + REGION_A_FIELD_NUMBER;
  hash = (53 * hash) + getRegionA().hashCode();
 }
 if (hasRegionB()) {
  hash = (37 * hash) + REGION_B_FIELD_NUMBER;
  hash = (53 * hash) + getRegionB().hashCode();
 }
 if (hasForcible()) {
  hash = (37 * hash) + FORCIBLE_FIELD_NUMBER;
  hash = (53 * hash) + hashBoolean(getForcible());
 }
 if (hasMasterSystemTime()) {
  hash = (37 * hash) + MASTER_SYSTEM_TIME_FIELD_NUMBER;
  hash = (53 * hash) + hashLong(getMasterSystemTime());
 }
 hash = (29 * hash) + getUnknownFields().hashCode();
 memoizedHashCode = hash;
 return hash;
}
origin: harbby/presto-connectors

public Builder mergeFrom(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.MergeRegionsRequest other) {
 if (other == org.apache.hadoop.hbase.protobuf.generated.AdminProtos.MergeRegionsRequest.getDefaultInstance()) return this;
 if (other.hasRegionA()) {
  mergeRegionA(other.getRegionA());
 }
 if (other.hasRegionB()) {
  mergeRegionB(other.getRegionB());
 }
 if (other.hasForcible()) {
  setForcible(other.getForcible());
 }
 if (other.hasMasterSystemTime()) {
  setMasterSystemTime(other.getMasterSystemTime());
 }
 this.mergeUnknownFields(other.getUnknownFields());
 return this;
}
origin: com.aliyun.hbase/alihbase-protocol

public Builder mergeFrom(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.MergeRegionsRequest other) {
 if (other == org.apache.hadoop.hbase.protobuf.generated.AdminProtos.MergeRegionsRequest.getDefaultInstance()) return this;
 if (other.hasRegionA()) {
  mergeRegionA(other.getRegionA());
 }
 if (other.hasRegionB()) {
  mergeRegionB(other.getRegionB());
 }
 if (other.hasForcible()) {
  setForcible(other.getForcible());
 }
 if (other.hasMasterSystemTime()) {
  setMasterSystemTime(other.getMasterSystemTime());
 }
 this.mergeUnknownFields(other.getUnknownFields());
 return this;
}
origin: org.apache.hbase/hbase-protocol

public Builder mergeFrom(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.MergeRegionsRequest other) {
 if (other == org.apache.hadoop.hbase.protobuf.generated.AdminProtos.MergeRegionsRequest.getDefaultInstance()) return this;
 if (other.hasRegionA()) {
  mergeRegionA(other.getRegionA());
 }
 if (other.hasRegionB()) {
  mergeRegionB(other.getRegionB());
 }
 if (other.hasForcible()) {
  setForcible(other.getForcible());
 }
 if (other.hasMasterSystemTime()) {
  setMasterSystemTime(other.getMasterSystemTime());
 }
 this.mergeUnknownFields(other.getUnknownFields());
 return this;
}
origin: apache/hbase

public Builder mergeFrom(org.apache.hadoop.hbase.protobuf.generated.AdminProtos.MergeRegionsRequest other) {
 if (other == org.apache.hadoop.hbase.protobuf.generated.AdminProtos.MergeRegionsRequest.getDefaultInstance()) return this;
 if (other.hasRegionA()) {
  mergeRegionA(other.getRegionA());
 }
 if (other.hasRegionB()) {
  mergeRegionB(other.getRegionB());
 }
 if (other.hasForcible()) {
  setForcible(other.getForcible());
 }
 if (other.hasMasterSystemTime()) {
  setMasterSystemTime(other.getMasterSystemTime());
 }
 this.mergeUnknownFields(other.getUnknownFields());
 return this;
}
org.apache.hadoop.hbase.protobuf.generatedAdminProtos$MergeRegionsRequesthasMasterSystemTime

Javadoc

optional uint64 master_system_time = 4;
 
wall clock time from master 

Popular methods of AdminProtos$MergeRegionsRequest

  • <init>
  • getDefaultInstance
  • getDescriptorForType
  • getForcible
    optional bool forcible = 3 [default = false];
  • getMasterSystemTime
    optional uint64 master_system_time = 4; wall clock time from master
  • getRegionA
    required .hbase.pb.RegionSpecifier region_a = 1;
  • getRegionB
    required .hbase.pb.RegionSpecifier region_b = 2;
  • getSerializedSize
  • getUnknownFields
  • hasForcible
    optional bool forcible = 3 [default = false];
  • hasRegionA
    required .hbase.pb.RegionSpecifier region_a = 1;
  • hasRegionB
    required .hbase.pb.RegionSpecifier region_b = 2;
  • hasRegionA,
  • hasRegionB,
  • hashBoolean,
  • hashLong,
  • initFields,
  • isInitialized,
  • makeExtensionsImmutable,
  • newBuilder,
  • parseUnknownField

Popular in Java

  • Start an intent from android
  • setRequestProperty (URLConnection)
  • getSystemService (Context)
  • findViewById (Activity)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Top plugins for WebStorm
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