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 TypeMethodDescriptiondoublegetEnd()Maximum value (right side of slider).doubleInitial/default value.getKey()Identifier used when submitting the dialog.com.google.protobuf.ByteStringIdentifier used when submitting the dialog.getLabel()Display label for the slider.com.google.protobuf.ByteStringDisplay label for the slider.Translation key for formatting the label with the current value.com.google.protobuf.ByteStringTranslation key for formatting the label with the current value.doublegetStart()Minimum value (left side of slider).doublegetStep()Step size for discrete values.intgetWidth()Display width in pixels.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getKey
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()Identifier used when submitting the dialog.
string key = 1;- Returns:
- The bytes for key.
-
getLabel
-
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.
-