Package k8s.io.api.core.v1
Interface Generated.RangeAllocationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.RangeAllocation,Generated.RangeAllocation.Builder
- Enclosing class:
- Generated
public static interface Generated.RangeAllocationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetData()Data is a bit array containing all allocated addresses in the previous segment.Generated.ObjectMetagetMetadata()Standard object's metadata.Generated.ObjectMetaOrBuildergetMetadataOrBuilder()Standard object's metadata.StringgetRange()Range is string that identifies the range represented by 'data'.com.google.protobuf.ByteStringgetRangeBytes()Range is string that identifies the range represented by 'data'.booleanhasData()Data is a bit array containing all allocated addresses in the previous segment.booleanhasMetadata()Standard object's metadata.booleanhasRange()Range is string that identifies the range represented by 'data'.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasMetadata
boolean hasMetadata()
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +optional
optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;- Returns:
- Whether the metadata field is set.
-
getMetadata
Generated.ObjectMeta getMetadata()
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +optional
optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;- Returns:
- The metadata.
-
getMetadataOrBuilder
Generated.ObjectMetaOrBuilder getMetadataOrBuilder()
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +optional
optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
-
hasRange
boolean hasRange()
Range is string that identifies the range represented by 'data'.
optional string range = 2;- Returns:
- Whether the range field is set.
-
getRange
String getRange()
Range is string that identifies the range represented by 'data'.
optional string range = 2;- Returns:
- The range.
-
getRangeBytes
com.google.protobuf.ByteString getRangeBytes()
Range is string that identifies the range represented by 'data'.
optional string range = 2;- Returns:
- The bytes for range.
-
hasData
boolean hasData()
Data is a bit array containing all allocated addresses in the previous segment.
optional bytes data = 3;- Returns:
- Whether the data field is set.
-
getData
com.google.protobuf.ByteString getData()
Data is a bit array containing all allocated addresses in the previous segment.
optional bytes data = 3;- Returns:
- The data.
-
-