Interface DataChangeRecord.ModOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
DataChangeRecord.Mod, DataChangeRecord.Mod.Builder
Enclosing class:
DataChangeRecord

public static interface DataChangeRecord.ModOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    The primary key values in JSON.
    com.google.protobuf.ByteString
    The primary key values in JSON.
    The new values of the changed columns in JSON.
    com.google.protobuf.ByteString
    The new values of the changed columns in JSON.
    The old values of the changed columns in JSON.
    com.google.protobuf.ByteString
    The old values of the changed columns in JSON.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getKeys

      String getKeys()
       The primary key values in JSON.
       
      string keys = 1;
      Returns:
      The keys.
    • getKeysBytes

      com.google.protobuf.ByteString getKeysBytes()
       The primary key values in JSON.
       
      string keys = 1;
      Returns:
      The bytes for keys.
    • getNewValues

      String getNewValues()
       The new values of the changed columns in JSON. Only contain the non-key
       columns.
       
      string new_values = 2;
      Returns:
      The newValues.
    • getNewValuesBytes

      com.google.protobuf.ByteString getNewValuesBytes()
       The new values of the changed columns in JSON. Only contain the non-key
       columns.
       
      string new_values = 2;
      Returns:
      The bytes for newValues.
    • getOldValues

      String getOldValues()
       The old values of the changed columns in JSON. Only contain the non-key
       columns.
       
      string old_values = 3;
      Returns:
      The oldValues.
    • getOldValuesBytes

      com.google.protobuf.ByteString getOldValuesBytes()
       The old values of the changed columns in JSON. Only contain the non-key
       columns.
       
      string old_values = 3;
      Returns:
      The bytes for oldValues.