org.osm2world.core.target.statistics
public static enum StatisticsTarget.Stat extends Enum<StatisticsTarget.Stat>
Enum Constant and Description |
---|
CONVEX_POLYGON_COUNT |
OBJECT_COUNT |
PRIMITIVE_COUNT |
TOTAL_TRIANGLE_COUNT |
TRIANGLE_FAN_COUNT |
TRIANGLE_STRIP_COUNT |
TRIANGLES_COUNT |
VBO_VALUE_COUNT |
Modifier and Type | Method and Description |
---|---|
static StatisticsTarget.Stat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatisticsTarget.Stat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatisticsTarget.Stat OBJECT_COUNT
public static final StatisticsTarget.Stat PRIMITIVE_COUNT
public static final StatisticsTarget.Stat TOTAL_TRIANGLE_COUNT
public static final StatisticsTarget.Stat TRIANGLES_COUNT
public static final StatisticsTarget.Stat TRIANGLE_STRIP_COUNT
public static final StatisticsTarget.Stat TRIANGLE_FAN_COUNT
public static final StatisticsTarget.Stat CONVEX_POLYGON_COUNT
public static final StatisticsTarget.Stat VBO_VALUE_COUNT
public static StatisticsTarget.Stat[] values()
for (StatisticsTarget.Stat c : StatisticsTarget.Stat.values()) System.out.println(c);
public static StatisticsTarget.Stat valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is null