Package net.minecraft.profiler
Class EmptyProfileResult
- java.lang.Object
-
- net.minecraft.profiler.EmptyProfileResult
-
- All Implemented Interfaces:
IProfileResult
public class EmptyProfileResult extends java.lang.Object implements IProfileResult
-
-
Field Summary
Fields Modifier and Type Field Description static EmptyProfileResult
EMPTY
-
Constructor Summary
Constructors Modifier Constructor Description private
EmptyProfileResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getEndTimeNano()
int
getEndTimeTicks()
long
getStartTimeNano()
int
getStartTimeTicks()
java.util.List<DataPoint>
getTimes(java.lang.String p_219917_1_)
boolean
saveResults(java.io.File p_219919_1_)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.minecraft.profiler.IProfileResult
getNanoDuration, getTickDuration
-
-
-
-
Field Detail
-
EMPTY
public static final EmptyProfileResult EMPTY
-
-
Method Detail
-
getTimes
public java.util.List<DataPoint> getTimes(java.lang.String p_219917_1_)
- Specified by:
getTimes
in interfaceIProfileResult
-
saveResults
public boolean saveResults(java.io.File p_219919_1_)
- Specified by:
saveResults
in interfaceIProfileResult
-
getStartTimeNano
public long getStartTimeNano()
- Specified by:
getStartTimeNano
in interfaceIProfileResult
-
getStartTimeTicks
public int getStartTimeTicks()
- Specified by:
getStartTimeTicks
in interfaceIProfileResult
-
getEndTimeNano
public long getEndTimeNano()
- Specified by:
getEndTimeNano
in interfaceIProfileResult
-
getEndTimeTicks
public int getEndTimeTicks()
- Specified by:
getEndTimeTicks
in interfaceIProfileResult
-
-