public enum ParamAppType extends java.lang.Enum<ParamAppType>
Enum Constant and Description |
---|
DefaultParamApp
Kappich-Parametrierung
|
FakeParamApp
Die Minimal-Implementierung FakeParamApp, die im Code übergebene Data-Objekte oder
JSON-Daten als Quelle versendet (nicht über den Datenverteiler parametrierbar, keine Persistenz)
|
NoParamApp
Keine Parametrierung
|
Modifier and Type | Method and Description |
---|---|
static ParamAppType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParamAppType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamAppType NoParamApp
public static final ParamAppType DefaultParamApp
public static final ParamAppType FakeParamApp
public static ParamAppType[] values()
for (ParamAppType c : ParamAppType.values()) System.out.println(c);
public static ParamAppType 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