Interface AssetSearchRequestOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
AssetSearchRequest, AssetSearchRequest.Builder

public interface AssetSearchRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • getTable

      String getTable()
       테이블(시트) 이름 (필수)
       
      string table = 1;
      Returns:
      The table.
    • getTableBytes

      com.google.protobuf.ByteString getTableBytes()
       테이블(시트) 이름 (필수)
       
      string table = 1;
      Returns:
      The bytes for table.
    • getColumnList

      List<String> getColumnList()
       반환할 컬럼 (비어있으면 전체)
       
      repeated string column = 2;
      Returns:
      A list containing the column.
    • getColumnCount

      int getColumnCount()
       반환할 컬럼 (비어있으면 전체)
       
      repeated string column = 2;
      Returns:
      The count of column.
    • getColumn

      String getColumn(int index)
       반환할 컬럼 (비어있으면 전체)
       
      repeated string column = 2;
      Parameters:
      index - The index of the element to return.
      Returns:
      The column at the given index.
    • getColumnBytes

      com.google.protobuf.ByteString getColumnBytes(int index)
       반환할 컬럼 (비어있으면 전체)
       
      repeated string column = 2;
      Parameters:
      index - The index of the value to return.
      Returns:
      The bytes of the column at the given index.
    • getFilter

      String getFilter()
       필터 조건식 (예: "code >= 100 AND name = 'test'")
       
      string filter = 3;
      Returns:
      The filter.
    • getFilterBytes

      com.google.protobuf.ByteString getFilterBytes()
       필터 조건식 (예: "code >= 100 AND name = 'test'")
       
      string filter = 3;
      Returns:
      The bytes for filter.
    • getSortList

       정렬 조건 (복수 컬럼 지원)
       
      repeated .houston.service.AssetSearchRequest.SortCriteria sort = 4;
    • getSort

      AssetSearchRequest.SortCriteria getSort(int index)
       정렬 조건 (복수 컬럼 지원)
       
      repeated .houston.service.AssetSearchRequest.SortCriteria sort = 4;
    • getSortCount

      int getSortCount()
       정렬 조건 (복수 컬럼 지원)
       
      repeated .houston.service.AssetSearchRequest.SortCriteria sort = 4;
    • getSortOrBuilderList

      List<? extends AssetSearchRequest.SortCriteriaOrBuilder> getSortOrBuilderList()
       정렬 조건 (복수 컬럼 지원)
       
      repeated .houston.service.AssetSearchRequest.SortCriteria sort = 4;
    • getSortOrBuilder

      AssetSearchRequest.SortCriteriaOrBuilder getSortOrBuilder(int index)
       정렬 조건 (복수 컬럼 지원)
       
      repeated .houston.service.AssetSearchRequest.SortCriteria sort = 4;
    • getOffset

      long getOffset()
       건너뛸 행 수 (기본값 0)
       
      int64 offset = 5;
      Returns:
      The offset.
    • getLimit

      long getLimit()
       최대 반환 행 수 (0 = 제한 없음)
       
      int64 limit = 6;
      Returns:
      The limit.
    • getHeadersOnly

      boolean getHeadersOnly()
       true면 메타데이터만 반환, 데이터 없음
       
      bool headersOnly = 7;
      Returns:
      The headersOnly.