public enum CalculationMode extends Enum<CalculationMode>
| Modifier and Type | Method and Description |
|---|---|
static CalculationMode |
getById(Integer id) |
int |
getId() |
static CalculationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CalculationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalculationMode LAST
public static final CalculationMode AVERAGE
public static final CalculationMode ESTIMATE
public static CalculationMode[] values()
for (CalculationMode c : CalculationMode.values()) System.out.println(c);
public static CalculationMode 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 int getId()
public static CalculationMode getById(Integer id)
Copyright © 2017. All rights reserved.