Package flyteidl.core
Interface Types.StructuredDatasetType.DatasetColumnOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Types.StructuredDatasetType.DatasetColumn,Types.StructuredDatasetType.DatasetColumn.Builder
- Enclosing class:
- Types.StructuredDatasetType
public static interface Types.StructuredDatasetType.DatasetColumnOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Types.LiteralTypegetLiteralType()The column type.Types.LiteralTypeOrBuildergetLiteralTypeOrBuilder()The column type.StringgetName()A unique name within the schema type for the column.com.google.protobuf.ByteStringgetNameBytes()A unique name within the schema type for the column.booleanhasLiteralType()The column type.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
A unique name within the schema type for the column.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
A unique name within the schema type for the column.
string name = 1;- Returns:
- The bytes for name.
-
hasLiteralType
boolean hasLiteralType()
The column type.
.flyteidl.core.LiteralType literal_type = 2;- Returns:
- Whether the literalType field is set.
-
getLiteralType
Types.LiteralType getLiteralType()
The column type.
.flyteidl.core.LiteralType literal_type = 2;- Returns:
- The literalType.
-
getLiteralTypeOrBuilder
Types.LiteralTypeOrBuilder getLiteralTypeOrBuilder()
The column type.
.flyteidl.core.LiteralType literal_type = 2;
-
-