Interface ClusterMetricsMessages.NodeMetrics.NumberOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
ClusterMetricsMessages.NodeMetrics.Number
,ClusterMetricsMessages.NodeMetrics.Number.Builder
- Enclosing class:
- ClusterMetricsMessages.NodeMetrics
public static interface ClusterMetricsMessages.NodeMetrics.NumberOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description akka.protobufv3.internal.ByteString
getSerialized()
optional bytes serialized = 4;
ClusterMetricsMessages.NodeMetrics.NumberType
getType()
required .NodeMetrics.NumberType type = 1;
int
getValue32()
optional uint32 value32 = 2;
long
getValue64()
optional uint64 value64 = 3;
boolean
hasSerialized()
optional bytes serialized = 4;
boolean
hasType()
required .NodeMetrics.NumberType type = 1;
boolean
hasValue32()
optional uint32 value32 = 2;
boolean
hasValue64()
optional uint64 value64 = 3;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasType
boolean hasType()
required .NodeMetrics.NumberType type = 1;
- Returns:
- Whether the type field is set.
-
getType
ClusterMetricsMessages.NodeMetrics.NumberType getType()
required .NodeMetrics.NumberType type = 1;
- Returns:
- The type.
-
hasValue32
boolean hasValue32()
optional uint32 value32 = 2;
- Returns:
- Whether the value32 field is set.
-
getValue32
int getValue32()
optional uint32 value32 = 2;
- Returns:
- The value32.
-
hasValue64
boolean hasValue64()
optional uint64 value64 = 3;
- Returns:
- Whether the value64 field is set.
-
getValue64
long getValue64()
optional uint64 value64 = 3;
- Returns:
- The value64.
-
hasSerialized
boolean hasSerialized()
optional bytes serialized = 4;
- Returns:
- Whether the serialized field is set.
-
getSerialized
akka.protobufv3.internal.ByteString getSerialized()
optional bytes serialized = 4;
- Returns:
- The serialized.
-
-