Interface DecimalOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
Decimal, Decimal.Builder

@Generated public interface DecimalOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    The precision (zero indicates unlimited precision)
    int
    The scale
    com.google.protobuf.ByteString
    The two's-complement representation of the unscaled integer value in big-endian byte order

    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

    • getValue

      com.google.protobuf.ByteString getValue()
       The two's-complement representation of the unscaled integer value in big-endian byte order
       
      bytes value = 1;
      Returns:
      The value.
    • getPrecision

      int getPrecision()
       The precision (zero indicates unlimited precision)
       
      uint32 precision = 2;
      Returns:
      The precision.
    • getScale

      int getScale()
       The scale
       
      int32 scale = 3;
      Returns:
      The scale.