public static enum CarbonAccountingTool.CATMode extends java.lang.Enum<CarbonAccountingTool.CATMode>
Enum Constant and Description |
---|
FROM_OTHER_APP
Running CAT from another application with user interface enabled.
|
SCRIPT
Running CAT in script mode with used interface disabled and clearing of random deviates of the
sensitivity analysis.
|
STANDALONE
Running CAT as a stand alone application with user interface enabled.
|
Modifier and Type | Method and Description |
---|---|
static CarbonAccountingTool.CATMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CarbonAccountingTool.CATMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CarbonAccountingTool.CATMode STANDALONE
public static final CarbonAccountingTool.CATMode FROM_OTHER_APP
public static final CarbonAccountingTool.CATMode SCRIPT
public static CarbonAccountingTool.CATMode[] values()
for (CarbonAccountingTool.CATMode c : CarbonAccountingTool.CATMode.values()) System.out.println(c);
public static CarbonAccountingTool.CATMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null