Package flyteidl.core
Interface Types.SchemaType.SchemaColumnOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Types.SchemaType.SchemaColumn,Types.SchemaType.SchemaColumn.Builder
- Enclosing class:
- Types.SchemaType
public static interface Types.SchemaType.SchemaColumnOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()A unique name -within the schema type- for the columncom.google.protobuf.ByteStringgetNameBytes()A unique name -within the schema type- for the columnTypes.SchemaType.SchemaColumn.SchemaColumnTypegetType()The column type.intgetTypeValue()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.
-
getTypeValue
int getTypeValue()
The column type. This allows a limited set of types currently.
.flyteidl.core.SchemaType.SchemaColumn.SchemaColumnType type = 2;- Returns:
- The enum numeric value on the wire for type.
-
getType
Types.SchemaType.SchemaColumn.SchemaColumnType getType()
The column type. This allows a limited set of types currently.
.flyteidl.core.SchemaType.SchemaColumn.SchemaColumnType type = 2;- Returns:
- The type.
-
-