main.java.com.streamlayer.files.FileMetaOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: streamlayer/files/files.common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.files;
public interface FileMetaOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.files.FileMeta)
com.google.protobuf.MessageLiteOrBuilder {
/**
* string name = 1 [json_name = "name"];
* @return The name.
*/
java.lang.String getName();
/**
* string name = 1 [json_name = "name"];
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* string type = 2 [json_name = "type"];
* @return The type.
*/
java.lang.String getType();
/**
* string type = 2 [json_name = "type"];
* @return The bytes for type.
*/
com.google.protobuf.ByteString
getTypeBytes();
/**
* string alias = 3 [json_name = "alias"];
* @return The alias.
*/
java.lang.String getAlias();
/**
* string alias = 3 [json_name = "alias"];
* @return The bytes for alias.
*/
com.google.protobuf.ByteString
getAliasBytes();
/**
* repeated string tags = 4 [json_name = "tags"];
* @return A list containing the tags.
*/
java.util.List
getTagsList();
/**
* repeated string tags = 4 [json_name = "tags"];
* @return The count of tags.
*/
int getTagsCount();
/**
* repeated string tags = 4 [json_name = "tags"];
* @param index The index of the element to return.
* @return The tags at the given index.
*/
java.lang.String getTags(int index);
/**
* repeated string tags = 4 [json_name = "tags"];
* @param index The index of the element to return.
* @return The tags at the given index.
*/
com.google.protobuf.ByteString
getTagsBytes(int index);
}