Interface HealthStatusSetOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
HealthStatusSet
,HealthStatusSet.Builder
public interface HealthStatusSetOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HealthStatus
getStatuses(int index)
An order-independent set of health status.int
getStatusesCount()
An order-independent set of health status.List<HealthStatus>
getStatusesList()
An order-independent set of health status.int
getStatusesValue(int index)
An order-independent set of health status.List<Integer>
getStatusesValueList()
An order-independent set of health status.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStatusesList
List<HealthStatus> getStatusesList()
An order-independent set of health status.
repeated .envoy.config.core.v3.HealthStatus statuses = 1 [(.validate.rules) = { ... }
- Returns:
- A list containing the statuses.
-
getStatusesCount
int getStatusesCount()
An order-independent set of health status.
repeated .envoy.config.core.v3.HealthStatus statuses = 1 [(.validate.rules) = { ... }
- Returns:
- The count of statuses.
-
getStatuses
HealthStatus getStatuses(int index)
An order-independent set of health status.
repeated .envoy.config.core.v3.HealthStatus statuses = 1 [(.validate.rules) = { ... }
- Parameters:
index
- The index of the element to return.- Returns:
- The statuses at the given index.
-
getStatusesValueList
List<Integer> getStatusesValueList()
An order-independent set of health status.
repeated .envoy.config.core.v3.HealthStatus statuses = 1 [(.validate.rules) = { ... }
- Returns:
- A list containing the enum numeric values on the wire for statuses.
-
getStatusesValue
int getStatusesValue(int index)
An order-independent set of health status.
repeated .envoy.config.core.v3.HealthStatus statuses = 1 [(.validate.rules) = { ... }
- Parameters:
index
- The index of the value to return.- Returns:
- The enum numeric value on the wire of statuses at the given index.
-
-