Package k8s.io.api.core.v1
Interface Generated.NodeAddressOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.NodeAddress,Generated.NodeAddress.Builder
- Enclosing class:
- Generated
public static interface Generated.NodeAddressOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAddress()The node address.com.google.protobuf.ByteStringgetAddressBytes()The node address.StringgetType()Node address type, one of Hostname, ExternalIP or InternalIP.com.google.protobuf.ByteStringgetTypeBytes()Node address type, one of Hostname, ExternalIP or InternalIP.booleanhasAddress()The node address.booleanhasType()Node address type, one of Hostname, ExternalIP or InternalIP.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasType
boolean hasType()
Node address type, one of Hostname, ExternalIP or InternalIP.
optional string type = 1;- Returns:
- Whether the type field is set.
-
getType
String getType()
Node address type, one of Hostname, ExternalIP or InternalIP.
optional string type = 1;- Returns:
- The type.
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()
Node address type, one of Hostname, ExternalIP or InternalIP.
optional string type = 1;- Returns:
- The bytes for type.
-
hasAddress
boolean hasAddress()
The node address.
optional string address = 2;- Returns:
- Whether the address field is set.
-
getAddress
String getAddress()
The node address.
optional string address = 2;- Returns:
- The address.
-
getAddressBytes
com.google.protobuf.ByteString getAddressBytes()
The node address.
optional string address = 2;- Returns:
- The bytes for address.
-
-