Interface MinMaxSettingOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MinMaxSetting, MinMaxSetting.Builder
@Generated
public interface MinMaxSettingOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionbooleanWhether this setting is disabled (read-only) in the UI.intgetMax()The maximum allowed value for both entries (inclusive).Configuration for the maximum value input field.Configuration for the maximum value input field.intgetMin()The minimum allowed value for both entries (inclusive).Configuration for the minimum value input field.Configuration for the minimum value input field.intgetStep()The step increment for value adjustments.booleanWhether to display numbers with thousand separators.booleanConfiguration for the maximum value input field.booleanConfiguration for the minimum value input field.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
-
getMin
int getMin()The minimum allowed value for both entries (inclusive). Both min and max entries must be >= this value.
int32 min = 1;- Returns:
- The min.
-
getMax
int getMax()The maximum allowed value for both entries (inclusive). Both min and max entries must be <= this value.
int32 max = 2;- Returns:
- The max.
-
getStep
int getStep()The step increment for value adjustments.
int32 step = 3;- Returns:
- The step.
-
getThousandSeparator
boolean getThousandSeparator()Whether to display numbers with thousand separators.
bool thousand_separator = 4;- Returns:
- The thousandSeparator.
-
hasMinEntry
boolean hasMinEntry()Configuration for the minimum value input field. The actual value must be <= maxEntry value.
.soulfire.v1.MinMaxSetting.Entry minEntry = 5;- Returns:
- Whether the minEntry field is set.
-
getMinEntry
MinMaxSetting.Entry getMinEntry()Configuration for the minimum value input field. The actual value must be <= maxEntry value.
.soulfire.v1.MinMaxSetting.Entry minEntry = 5;- Returns:
- The minEntry.
-
getMinEntryOrBuilder
MinMaxSetting.EntryOrBuilder getMinEntryOrBuilder()Configuration for the minimum value input field. The actual value must be <= maxEntry value.
.soulfire.v1.MinMaxSetting.Entry minEntry = 5; -
hasMaxEntry
boolean hasMaxEntry()Configuration for the maximum value input field. The actual value must be >= minEntry value.
.soulfire.v1.MinMaxSetting.Entry maxEntry = 6;- Returns:
- Whether the maxEntry field is set.
-
getMaxEntry
MinMaxSetting.Entry getMaxEntry()Configuration for the maximum value input field. The actual value must be >= minEntry value.
.soulfire.v1.MinMaxSetting.Entry maxEntry = 6;- Returns:
- The maxEntry.
-
getMaxEntryOrBuilder
MinMaxSetting.EntryOrBuilder getMaxEntryOrBuilder()Configuration for the maximum value input field. The actual value must be >= minEntry value.
.soulfire.v1.MinMaxSetting.Entry maxEntry = 6; -
getDisabled
boolean getDisabled()Whether this setting is disabled (read-only) in the UI.
bool disabled = 7;- Returns:
- The disabled.
-