Uses of Class
com.jme.util.stat.StatType

Packages that use StatType
com.jme.util.stat   
com.jme.util.stat.graph   
 

Uses of StatType in com.jme.util.stat
 

Fields in com.jme.util.stat declared as StatType
static StatType StatType.STAT_DISPLAYSWAP_TIMER
           
static StatType StatType.STAT_FRAMES
           
static StatType StatType.STAT_GEOM_COUNT
           
static StatType StatType.STAT_LINE_COUNT
           
static StatType StatType.STAT_POINT_COUNT
           
static StatType StatType.STAT_QUAD_COUNT
           
static StatType StatType.STAT_RENDER_TIMER
           
static StatType StatType.STAT_SHADER_BINDS
           
static StatType StatType.STAT_SHADER_STATE_TIMER
           
static StatType StatType.STAT_STATES_TIMER
           
static StatType StatType.STAT_TEXTURE_BINDS
           
static StatType StatType.STAT_TEXTURE_STATE_TIMER
           
static StatType StatType.STAT_TRIANGLE_COUNT
           
static StatType StatType.STAT_UNSPECIFIED_TIMER
           
static StatType StatType.STAT_UPDATE_TIMER
           
static StatType StatType.STAT_VERTEX_COUNT
           
 

Fields in com.jme.util.stat with type parameters of type StatType
protected static java.util.HashMap<StatType,StatValue> StatCollector.current
          Our map of current stat values.
protected static java.util.HashSet<StatType> StatCollector.timedStats
           
protected static java.util.Stack<StatType> StatCollector.timeStatStack
           
 java.util.HashMap<StatType,StatValue> MultiStatSample.values
           
 

Methods in com.jme.util.stat with parameters of type StatType
static void StatCollector.addStat(StatType type, double statValue)
           
static void StatCollector.addTimedStat(StatType type)
          Add a type to the set of stat types that are paid attention to when doing timed stat checking.
 int StatType.compareTo(StatType obj)
           
static void StatCollector.endStat(StatType type)
           
static boolean StatCollector.hasHistoricalStat(StatType type)
           
static boolean StatCollector.removeTimedStat(StatType type)
          Removes a type from the set of stat types that are paid attention to when doing timed stat checking.
static void StatCollector.startStat(StatType type)
           
 

Method parameters in com.jme.util.stat with type arguments of type StatType
static MultiStatSample MultiStatSample.createNew(java.util.HashMap<StatType,StatValue> current)
           
 

Uses of StatType in com.jme.util.stat.graph
 

Fields in com.jme.util.stat.graph declared as StatType
static StatType LineGrapher.Horizontal
           
static StatType TimedAreaGrapher.Horizontal
           
(package private)  StatType TabledLabelGrapher.LabelEntry.type
           
static StatType LineGrapher.Vertical
           
static StatType TimedAreaGrapher.Vertical
           
 

Fields in com.jme.util.stat.graph with type parameters of type StatType
protected  java.util.TreeMap<StatType,java.util.HashMap<java.lang.String,java.lang.Object>> AbstractStatGrapher.config
           
 

Methods in com.jme.util.stat.graph with parameters of type StatType
 void AbstractStatGrapher.addConfig(StatType type, java.util.HashMap<java.lang.String,java.lang.Object> configs)
           
 void AbstractStatGrapher.addConfig(StatType type, java.lang.String key, java.lang.Object value)
           
 void AbstractStatGrapher.clearConfig(StatType type)
           
 void AbstractStatGrapher.clearConfig(StatType type, java.lang.String key)
           
protected  boolean AbstractStatGrapher.getBooleanConfig(StatType type, java.lang.String configName, boolean defaultVal)
           
protected  ColorRGBA AbstractStatGrapher.getColorConfig(StatType type, java.lang.String configName, ColorRGBA defaultVal)
           
protected  double AbstractStatGrapher.getDoubleConfig(StatType type, java.lang.String configName, double defaultVal)
           
protected  float AbstractStatGrapher.getFloatConfig(StatType type, java.lang.String configName, float defaultVal)
           
protected  int AbstractStatGrapher.getIntConfig(StatType type, java.lang.String configName, int defaultVal)
           
protected  long AbstractStatGrapher.getLongConfig(StatType type, java.lang.String configName, long defaultVal)
           
protected  short AbstractStatGrapher.getShortConfig(StatType type, java.lang.String configName, short defaultVal)
           
protected  java.lang.String AbstractStatGrapher.getStringConfig(StatType type, java.lang.String configName, java.lang.String defaultVal)
           
 boolean AbstractStatGrapher.hasConfig(StatType type)
           
 Line LineGrapher.updateLineKey(StatType type, Line lineKey)
           
 Line TableLinkable.updateLineKey(StatType type, Line lineKey)
          Update/Create a line to reflect the color, stipple, antialias and width used in the other graph.
 Line TimedAreaGrapher.updateLineKey(StatType type, Line lineKey)
           
 

Constructors in com.jme.util.stat.graph with parameters of type StatType
LineGrapher.LineEntry(int maxSamples, StatType type)
           
TabledLabelGrapher.LabelEntry(StatType type)
           
TimedAreaGrapher.AreaEntry(int maxSamples, StatType type)