Interface DialogNumberRangeInputOrBuilder

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

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

    Modifier and Type
    Method
    Description
    double
    Maximum value (right side of slider).
    double
    Initial/default value.
    Identifier used when submitting the dialog.
    com.google.protobuf.ByteString
    Identifier used when submitting the dialog.
    Display label for the slider.
    com.google.protobuf.ByteString
    Display label for the slider.
    Translation key for formatting the label with the current value.
    com.google.protobuf.ByteString
    Translation key for formatting the label with the current value.
    double
    Minimum value (left side of slider).
    double
    Step size for discrete values.
    int
    Display width in pixels.

    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

    • getKey

      String getKey()
      Identifier used when submitting the dialog.
      
      string key = 1;
      Returns:
      The key.
    • getKeyBytes

      com.google.protobuf.ByteString getKeyBytes()
      Identifier used when submitting the dialog.
      
      string key = 1;
      Returns:
      The bytes for key.
    • getLabel

      String getLabel()
      Display label for the slider.
      
      string label = 2;
      Returns:
      The label.
    • getLabelBytes

      com.google.protobuf.ByteString getLabelBytes()
      Display label for the slider.
      
      string label = 2;
      Returns:
      The bytes for label.
    • getLabelFormat

      String getLabelFormat()
      Translation key for formatting the label with the current value.
      
      string label_format = 3;
      Returns:
      The labelFormat.
    • getLabelFormatBytes

      com.google.protobuf.ByteString getLabelFormatBytes()
      Translation key for formatting the label with the current value.
      
      string label_format = 3;
      Returns:
      The bytes for labelFormat.
    • getWidth

      int getWidth()
      Display width in pixels.
      Range: 1-1024, default: 200.
      
      int32 width = 4;
      Returns:
      The width.
    • getStart

      double getStart()
      Minimum value (left side of slider).
      
      double start = 5;
      Returns:
      The start.
    • getEnd

      double getEnd()
      Maximum value (right side of slider).
      
      double end = 6;
      Returns:
      The end.
    • getStep

      double getStep()
      Step size for discrete values.
      If 0, continuous values are allowed.
      
      double step = 7;
      Returns:
      The step.
    • getInitial

      double getInitial()
      Initial/default value.
      
      double initial = 8;
      Returns:
      The initial.