Package gauge.messages
Interface Spec.ParameterOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Spec.Parameter,Spec.Parameter.Builder
- Enclosing class:
- Spec
public static interface Spec.ParameterOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetName()/ Holds the name of the parameter, used as Key to lookup the value.com.google.protobuf.ByteString/ Holds the name of the parameter, used as Key to lookup the value./ Type of the Parameter.int/ Type of the Parameter.getTable()/ Holds the table value, if parameterType=Table or Special_Table/ Holds the table value, if parameterType=Table or Special_TablegetValue()/ Holds the value of the parametercom.google.protobuf.ByteString/ Holds the value of the parameterbooleanhasTable()/ Holds the table value, if parameterType=Table or Special_TableMethods 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
-
getParameterTypeValue
int getParameterTypeValue()/ Type of the Parameter. Valid values: Static, Dynamic, Special_String, Special_Table, Table
.gauge.messages.Parameter.ParameterType parameterType = 1;- Returns:
- The enum numeric value on the wire for parameterType.
-
getParameterType
Spec.Parameter.ParameterType getParameterType()/ Type of the Parameter. Valid values: Static, Dynamic, Special_String, Special_Table, Table
.gauge.messages.Parameter.ParameterType parameterType = 1;- Returns:
- The parameterType.
-
getValue
String getValue()/ Holds the value of the parameter
string value = 2;- Returns:
- The value.
-
getValueBytes
com.google.protobuf.ByteString getValueBytes()/ Holds the value of the parameter
string value = 2;- Returns:
- The bytes for value.
-
getName
String getName()/ Holds the name of the parameter, used as Key to lookup the value.
string name = 3;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()/ Holds the name of the parameter, used as Key to lookup the value.
string name = 3;- Returns:
- The bytes for name.
-
hasTable
boolean hasTable()/ Holds the table value, if parameterType=Table or Special_Table
.gauge.messages.ProtoTable table = 4;- Returns:
- Whether the table field is set.
-
getTable
Spec.ProtoTable getTable()/ Holds the table value, if parameterType=Table or Special_Table
.gauge.messages.ProtoTable table = 4;- Returns:
- The table.
-
getTableOrBuilder
Spec.ProtoTableOrBuilder getTableOrBuilder()/ Holds the table value, if parameterType=Table or Special_Table
.gauge.messages.ProtoTable table = 4;
-