Interface Mdb.ArgumentDimensionInfoOrBuilder

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

public static interface Mdb.ArgumentDimensionInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Use the value of the referenced argument.
    com.google.protobuf.ByteString
    Use the value of the referenced argument.
    long
    Use a fixed integer value.
    long
    Shift the value obtained from a parameter or argument reference.
    Use the value of the referenced parameter.
    Use the value of the referenced parameter.
    long
    Scale the value obtained from a parameter or argument reference.
    boolean
    Use the value of the referenced argument.
    boolean
    Use a fixed integer value.
    boolean
    Shift the value obtained from a parameter or argument reference.
    boolean
    Use the value of the referenced parameter.
    boolean
    Scale the value obtained from a parameter or argument reference.

    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

    • hasFixedValue

      boolean hasFixedValue()
       Use a fixed integer value. If set, no other options are applicable.
       This value describes the length.
       
      optional int64 fixedValue = 1;
      Returns:
      Whether the fixedValue field is set.
    • getFixedValue

      long getFixedValue()
       Use a fixed integer value. If set, no other options are applicable.
       This value describes the length.
       
      optional int64 fixedValue = 1;
      Returns:
      The fixedValue.
    • hasParameter

      boolean hasParameter()
       Use the value of the referenced parameter.
       The value describes the zero-based ending index (length - 1)
       For a value ``v``, the dimension's length is determined
       as: ``(v * slope) + intercept``. 
       
      optional .yamcs.protobuf.mdb.ParameterInfo parameter = 2;
      Returns:
      Whether the parameter field is set.
    • getParameter

      Mdb.ParameterInfo getParameter()
       Use the value of the referenced parameter.
       The value describes the zero-based ending index (length - 1)
       For a value ``v``, the dimension's length is determined
       as: ``(v * slope) + intercept``. 
       
      optional .yamcs.protobuf.mdb.ParameterInfo parameter = 2;
      Returns:
      The parameter.
    • getParameterOrBuilder

      Mdb.ParameterInfoOrBuilder getParameterOrBuilder()
       Use the value of the referenced parameter.
       The value describes the zero-based ending index (length - 1)
       For a value ``v``, the dimension's length is determined
       as: ``(v * slope) + intercept``. 
       
      optional .yamcs.protobuf.mdb.ParameterInfo parameter = 2;
    • hasArgument

      boolean hasArgument()
       Use the value of the referenced argument.
       The value describes the zero-based ending index (length - 1)
       For a value ``v``, the dimension's length is determined
       as: ``(v * slope) + intercept``.
       
      optional string argument = 3;
      Returns:
      Whether the argument field is set.
    • getArgument

      String getArgument()
       Use the value of the referenced argument.
       The value describes the zero-based ending index (length - 1)
       For a value ``v``, the dimension's length is determined
       as: ``(v * slope) + intercept``.
       
      optional string argument = 3;
      Returns:
      The argument.
    • getArgumentBytes

      com.google.protobuf.ByteString getArgumentBytes()
       Use the value of the referenced argument.
       The value describes the zero-based ending index (length - 1)
       For a value ``v``, the dimension's length is determined
       as: ``(v * slope) + intercept``.
       
      optional string argument = 3;
      Returns:
      The bytes for argument.
    • hasSlope

      boolean hasSlope()
       Scale the value obtained from a parameter or argument reference.
       
      optional int64 slope = 4;
      Returns:
      Whether the slope field is set.
    • getSlope

      long getSlope()
       Scale the value obtained from a parameter or argument reference.
       
      optional int64 slope = 4;
      Returns:
      The slope.
    • hasIntercept

      boolean hasIntercept()
       Shift the value obtained from a parameter or argument reference.
       
      optional int64 intercept = 5;
      Returns:
      Whether the intercept field is set.
    • getIntercept

      long getIntercept()
       Shift the value obtained from a parameter or argument reference.
       
      optional int64 intercept = 5;
      Returns:
      The intercept.