Package 

Interface FileResult

  • All Implemented Interfaces:
    kotlin.collections.Iterable , love.forte.simbot.api.message.containers.Container , love.forte.simbot.api.message.containers.OriginalDataContainer , love.forte.simbot.api.message.results.MultipleResults , love.forte.simbot.api.message.results.NodeResult , love.forte.simbot.api.message.results.Result

    
    public interface FileResult
     implements NodeResult<FileInfo>
                        

    文件信息响应值。

    • Method Summary

      Modifier and Type Method Description
      abstract FileInfo getValue() 当前文件。
      abstract List<FileResult> getResults() 此文件夹下的文件列表。可能为空。
      abstract String getOriginalData() 得到原始数据字符串。 数据不应该为null。原始数据信息一般用于debug或测试用,大部分情况下功能类似于toString。
      • Methods inherited from class love.forte.simbot.api.message.results.NodeResult

        isEmpty, iterator, size, stream
      • Methods inherited from class love.forte.simbot.api.message.results.MultipleResults

        forEach, spliterator
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getResults

         abstract List<FileResult> getResults()

        此文件夹下的文件列表。可能为空。

      • getOriginalData

         abstract String getOriginalData()

        得到原始数据字符串。 数据不应该为null。

        原始数据信息一般用于debug或测试用,大部分情况下功能类似于toString。