ProfileCollector.java

net.minecraft.util.profiling.ProfileCollector

信息

  • 全限定名:net.minecraft.util.profiling.ProfileCollector
  • 类型:public interface
  • 包:net.minecraft.util.profiling
  • 源码路径:src/main/java/net/minecraft/util/profiling/ProfileCollector.java
  • 起始行号:L8
  • 继承:ProfilerFiller
  • 职责:

    TODO

字段/常量

内部类/嵌套类型

构造器

方法

下面的方法块按源码顺序生成。

ProfileResults getResults() @ L9

  • 方法名:getResults
  • 源码定位:L9
  • 返回类型:ProfileResults
  • 修饰符:package-private

参数:

说明:

TODO

ActiveProfiler.PathEntry getEntry(String path) @ L11

  • 方法名:getEntry
  • 源码定位:L11
  • 返回类型:ActiveProfiler.PathEntry
  • 修饰符:package-private

参数:

  • path: String

说明:

TODO

Set<Pair<String,MetricCategory>> getChartedPaths() @ L13

  • 方法名:getChartedPaths
  • 源码定位:L13
  • 返回类型:Set<Pair<String,MetricCategory>>
  • 修饰符:package-private

参数:

说明:

TODO

代码

public interface ProfileCollector extends ProfilerFiller {
    ProfileResults getResults();
 
    ActiveProfiler.@Nullable PathEntry getEntry(final String path);
 
    Set<Pair<String, MetricCategory>> getChartedPaths();
}

引用的其他类