SampleStorage.java
net.minecraft.util.debugchart.SampleStorage
信息
- 全限定名:net.minecraft.util.debugchart.SampleStorage
- 类型:public interface
- 包:net.minecraft.util.debugchart
- 源码路径:src/main/java/net/minecraft/util/debugchart/SampleStorage.java
- 起始行号:L3
- 职责:
TODO
字段/常量
- 无
内部类/嵌套类型
- 无
构造器
- 无
方法
下面的方法块按源码顺序生成。
int capacity() @ L4
- 方法名:capacity
- 源码定位:L4
- 返回类型:int
- 修饰符:package-private
参数:
- 无
说明:
TODO
int size() @ L6
- 方法名:size
- 源码定位:L6
- 返回类型:int
- 修饰符:package-private
参数:
- 无
说明:
TODO
long get(int index) @ L8
- 方法名:get
- 源码定位:L8
- 返回类型:long
- 修饰符:package-private
参数:
- index: int
说明:
TODO
long get(int index, int dimension) @ L10
- 方法名:get
- 源码定位:L10
- 返回类型:long
- 修饰符:package-private
参数:
- index: int
- dimension: int
说明:
TODO
void reset() @ L12
- 方法名:reset
- 源码定位:L12
- 返回类型:void
- 修饰符:package-private
参数:
- 无
说明:
TODO
代码
public interface SampleStorage {
int capacity();
int size();
long get(final int index);
long get(final int index, final int dimension);
void reset();
}引用的其他类
- 无