public final class ConstraintEntity extends GeneratedMessageV3 implements ConstraintEntityOrBuilder
   
   Constraint is not used as an independent entity, it is retrieved
 as part of another entity such as Table or View.
 Protobuf type google.cloud.clouddms.v1.ConstraintEntity
    Inherited Members
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
      com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT)
    
    
      com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT,int)
    
    
    
    
    
    
    
    
      com.google.protobuf.GeneratedMessageV3.<T>emptyList(java.lang.Class<T>)
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
      com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int)
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
   
  Static Fields
  
  CUSTOM_FEATURES_FIELD_NUMBER
  
    public static final int CUSTOM_FEATURES_FIELD_NUMBER
   
  
    
      
        | Field Value | 
      
        | Type | Description | 
      
        | int |  | 
    
  
  NAME_FIELD_NUMBER
  
    public static final int NAME_FIELD_NUMBER
   
  
    
      
        | Field Value | 
      
        | Type | Description | 
      
        | int |  | 
    
  
  REFERENCE_COLUMNS_FIELD_NUMBER
  
    public static final int REFERENCE_COLUMNS_FIELD_NUMBER
   
  
    
      
        | Field Value | 
      
        | Type | Description | 
      
        | int |  | 
    
  
  REFERENCE_TABLE_FIELD_NUMBER
  
    public static final int REFERENCE_TABLE_FIELD_NUMBER
   
  
    
      
        | Field Value | 
      
        | Type | Description | 
      
        | int |  | 
    
  
  TABLE_COLUMNS_FIELD_NUMBER
  
    public static final int TABLE_COLUMNS_FIELD_NUMBER
   
  
    
      
        | Field Value | 
      
        | Type | Description | 
      
        | int |  | 
    
  
  TABLE_NAME_FIELD_NUMBER
  
    public static final int TABLE_NAME_FIELD_NUMBER
   
  
    
      
        | Field Value | 
      
        | Type | Description | 
      
        | int |  | 
    
  
  TYPE_FIELD_NUMBER
  
    public static final int TYPE_FIELD_NUMBER
   
  
    
      
        | Field Value | 
      
        | Type | Description | 
      
        | int |  | 
    
  
  Static Methods
  
  
  getDefaultInstance()
  
    public static ConstraintEntity getDefaultInstance()
   
  
  
  getDescriptor()
  
    public static final Descriptors.Descriptor getDescriptor()
   
  
  
  newBuilder()
  
    public static ConstraintEntity.Builder newBuilder()
   
  
  
  newBuilder(ConstraintEntity prototype)
  
    public static ConstraintEntity.Builder newBuilder(ConstraintEntity prototype)
   
  
  
  
  
  
    public static ConstraintEntity parseDelimitedFrom(InputStream input)
   
  
  
  
  
  
  
    public static ConstraintEntity parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
   
  
  
  
  
  parseFrom(byte[] data)
  
    public static ConstraintEntity parseFrom(byte[] data)
   
  
    
      
        | Parameter | 
      
        | Name | Description | 
      
        | data | byte[]
 | 
    
  
  
  
  
  parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
  
    public static ConstraintEntity parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
   
  
  
  
  
  parseFrom(ByteString data)
  
    public static ConstraintEntity parseFrom(ByteString data)
   
  
  
  
  
  parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
  
    public static ConstraintEntity parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
   
  
  
  
  
  
  
    public static ConstraintEntity parseFrom(CodedInputStream input)
   
  
  
  
  
  
  
    public static ConstraintEntity parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
   
  
  
  
  
  
  
    public static ConstraintEntity parseFrom(InputStream input)
   
  
  
  
  
  
  
    public static ConstraintEntity parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
   
  
  
  
  
  parseFrom(ByteBuffer data)
  
    public static ConstraintEntity parseFrom(ByteBuffer data)
   
  
  
  
  
  parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
  
    public static ConstraintEntity parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
   
  
  
  
  
  parser()
  
    public static Parser<ConstraintEntity> parser()
   
  
  Methods
  
  
  equals(Object obj)
  
    public boolean equals(Object obj)
   
  
    
      
        | Parameter | 
      
        | Name | Description | 
      
        | obj | Object
 | 
    
  
  
  Overrides
  
  
  getCustomFeatures()
  
    public Struct getCustomFeatures()
   
   Custom engine specific features.
 .google.protobuf.Struct custom_features = 4;
    
      
        | Returns | 
      
        | Type | Description | 
      
        | Struct | The customFeatures. | 
    
  
  
  getCustomFeaturesOrBuilder()
  
    public StructOrBuilder getCustomFeaturesOrBuilder()
   
   Custom engine specific features.
 .google.protobuf.Struct custom_features = 4;
getDefaultInstanceForType()
  
    public ConstraintEntity getDefaultInstanceForType()
   
  
  
  getName()
  
   The name of the table constraint.
 string name = 1;
    
      
        | Returns | 
      
        | Type | Description | 
      
        | String | The name. | 
    
  
  
  getNameBytes()
  
    public ByteString getNameBytes()
   
   The name of the table constraint.
 string name = 1;
    
      
        | Returns | 
      
        | Type | Description | 
      
        | ByteString | The bytes for name. | 
    
  
  
  getParserForType()
  
    public Parser<ConstraintEntity> getParserForType()
   
  
  Overrides
  
  
  getReferenceColumns(int index)
  
    public String getReferenceColumns(int index)
   
   Reference columns which may be associated with the constraint. For example,
 if the constraint is a FOREIGN_KEY, this represents the list of full names
 of referenced columns by the foreign key.
 repeated string reference_columns = 5;
    
      
        | Parameter | 
      
        | Name | Description | 
      
        | index | int
 The index of the element to return. | 
    
  
  
    
      
        | Returns | 
      
        | Type | Description | 
      
        | String | The referenceColumns at the given index. | 
    
  
  
  getReferenceColumnsBytes(int index)
  
    public ByteString getReferenceColumnsBytes(int index)
   
   Reference columns which may be associated with the constraint. For example,
 if the constraint is a FOREIGN_KEY, this represents the list of full names
 of referenced columns by the foreign key.
 repeated string reference_columns = 5;
    
      
        | Parameter | 
      
        | Name | Description | 
      
        | index | int
 The index of the value to return. | 
    
  
  
    
      
        | Returns | 
      
        | Type | Description | 
      
        | ByteString | The bytes of the referenceColumns at the given index. | 
    
  
  
  getReferenceColumnsCount()
  
    public int getReferenceColumnsCount()
   
   Reference columns which may be associated with the constraint. For example,
 if the constraint is a FOREIGN_KEY, this represents the list of full names
 of referenced columns by the foreign key.
 repeated string reference_columns = 5;
    
      
        | Returns | 
      
        | Type | Description | 
      
        | int | The count of referenceColumns. | 
    
  
  
  getReferenceColumnsList()
  
    public ProtocolStringList getReferenceColumnsList()
   
   Reference columns which may be associated with the constraint. For example,
 if the constraint is a FOREIGN_KEY, this represents the list of full names
 of referenced columns by the foreign key.
 repeated string reference_columns = 5;
getReferenceTable()
  
    public String getReferenceTable()
   
   Reference table which may be associated with the constraint. For example,
 if the constraint is a FOREIGN_KEY, this represents the list of full name
 of the referenced table by the foreign key.
 string reference_table = 6;
    
      
        | Returns | 
      
        | Type | Description | 
      
        | String | The referenceTable. | 
    
  
  
  getReferenceTableBytes()
  
    public ByteString getReferenceTableBytes()
   
   Reference table which may be associated with the constraint. For example,
 if the constraint is a FOREIGN_KEY, this represents the list of full name
 of the referenced table by the foreign key.
 string reference_table = 6;
    
      
        | Returns | 
      
        | Type | Description | 
      
        | ByteString | The bytes for referenceTable. | 
    
  
  
  getSerializedSize()
  
    public int getSerializedSize()
   
  
    
      
        | Returns | 
      
        | Type | Description | 
      
        | int |  | 
    
  
  Overrides
  
  
  getTableColumns(int index)
  
    public String getTableColumns(int index)
   
   Table columns used as part of the Constraint, for example primary key
 constraint should list the columns which constitutes the key.
 repeated string table_columns = 3;
    
      
        | Parameter | 
      
        | Name | Description | 
      
        | index | int
 The index of the element to return. | 
    
  
  
    
      
        | Returns | 
      
        | Type | Description | 
      
        | String | The tableColumns at the given index. | 
    
  
  
  getTableColumnsBytes(int index)
  
    public ByteString getTableColumnsBytes(int index)
   
   Table columns used as part of the Constraint, for example primary key
 constraint should list the columns which constitutes the key.
 repeated string table_columns = 3;
    
      
        | Parameter | 
      
        | Name | Description | 
      
        | index | int
 The index of the value to return. | 
    
  
  
    
      
        | Returns | 
      
        | Type | Description | 
      
        | ByteString | The bytes of the tableColumns at the given index. | 
    
  
  
  getTableColumnsCount()
  
    public int getTableColumnsCount()
   
   Table columns used as part of the Constraint, for example primary key
 constraint should list the columns which constitutes the key.
 repeated string table_columns = 3;
    
      
        | Returns | 
      
        | Type | Description | 
      
        | int | The count of tableColumns. | 
    
  
  
  getTableColumnsList()
  
    public ProtocolStringList getTableColumnsList()
   
   Table columns used as part of the Constraint, for example primary key
 constraint should list the columns which constitutes the key.
 repeated string table_columns = 3;
getTableName()
  
    public String getTableName()
   
   Table which is associated with the constraint. In case the constraint
 is defined on a table, this field is left empty as this information is
 stored in parent_name. However, if constraint is defined on a view, this
 field stores the table name on which the view is defined.
 string table_name = 7;
    
      
        | Returns | 
      
        | Type | Description | 
      
        | String | The tableName. | 
    
  
  
  getTableNameBytes()
  
    public ByteString getTableNameBytes()
   
   Table which is associated with the constraint. In case the constraint
 is defined on a table, this field is left empty as this information is
 stored in parent_name. However, if constraint is defined on a view, this
 field stores the table name on which the view is defined.
 string table_name = 7;
    
      
        | Returns | 
      
        | Type | Description | 
      
        | ByteString | The bytes for tableName. | 
    
  
  
  getType()
  
   Type of constraint, for example unique, primary key, foreign key (currently
 only primary key is supported).
 string type = 2;
    
      
        | Returns | 
      
        | Type | Description | 
      
        | String | The type. | 
    
  
  
  getTypeBytes()
  
    public ByteString getTypeBytes()
   
   Type of constraint, for example unique, primary key, foreign key (currently
 only primary key is supported).
 string type = 2;
    
      
        | Returns | 
      
        | Type | Description | 
      
        | ByteString | The bytes for type. | 
    
  
  
  hasCustomFeatures()
  
    public boolean hasCustomFeatures()
   
   Custom engine specific features.
 .google.protobuf.Struct custom_features = 4;
    
      
        | Returns | 
      
        | Type | Description | 
      
        | boolean | Whether the customFeatures field is set. | 
    
  
  
  hashCode()
  
  
    
      
        | Returns | 
      
        | Type | Description | 
      
        | int |  | 
    
  
  Overrides
  
  
  internalGetFieldAccessorTable()
  
    protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
   
  
  Overrides
  
  
  isInitialized()
  
    public final boolean isInitialized()
   
  
  Overrides
  
  
  newBuilderForType()
  
    public ConstraintEntity.Builder newBuilderForType()
   
  
  
  newBuilderForType(GeneratedMessageV3.BuilderParent parent)
  
    protected ConstraintEntity.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
   
  
  
  Overrides
  
  
  newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
  
    protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
   
  
  
    
      
        | Returns | 
      
        | Type | Description | 
      
        | Object |  | 
    
  
  Overrides
  
  
  toBuilder()
  
    public ConstraintEntity.Builder toBuilder()
   
  
  
  writeTo(CodedOutputStream output)
  
    public void writeTo(CodedOutputStream output)
   
  
  Overrides