Interface LocalFileSourceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LocalFileSource
,LocalFileSource.Builder
public interface LocalFileSourceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileFormat
getFileFormat()
The format of the file that is being uploaded.int
getFileFormatValue()
The format of the file that is being uploaded.String
getFilename()
The file name and extension of the uploaded file.com.google.protobuf.ByteString
getFilenameBytes()
The file name and extension of the uploaded file.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFilename
String getFilename()
The file name and extension of the uploaded file.
string filename = 1;
- Returns:
- The filename.
-
getFilenameBytes
com.google.protobuf.ByteString getFilenameBytes()
The file name and extension of the uploaded file.
string filename = 1;
- Returns:
- The bytes for filename.
-
getFileFormatValue
int getFileFormatValue()
The format of the file that is being uploaded.
.google.maps.mapsplatformdatasets.v1alpha.FileFormat file_format = 2;
- Returns:
- The enum numeric value on the wire for fileFormat.
-
getFileFormat
FileFormat getFileFormat()
The format of the file that is being uploaded.
.google.maps.mapsplatformdatasets.v1alpha.FileFormat file_format = 2;
- Returns:
- The fileFormat.
-
-