public enum StatsOperation extends Enum<StatsOperation>
| Modifier and Type | Method and Description |
|---|---|
static StatsOperation |
getType(String opStr) |
static Map<String,StatsOperation> |
map() |
static Map<String,StatsOperation> |
map(String csvFile) |
String |
toString() |
static StatsOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatsOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatsOperation AVG
public static final StatsOperation SUM
public static final StatsOperation DEL
public static StatsOperation[] values()
for (StatsOperation c : StatsOperation.values()) System.out.println(c);
public static StatsOperation 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 nullpublic static StatsOperation getType(String opStr)
public static Map<String,StatsOperation> map()
public String toString()
toString in class Enum<StatsOperation>public static Map<String,StatsOperation> map(String csvFile)
Copyright © 2015 Kurento. All rights reserved.