Package de.kappich.pat.testumg.util
Enum ParamAppType
- java.lang.Object
-
- java.lang.Enum<ParamAppType>
-
- de.kappich.pat.testumg.util.ParamAppType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ParamAppType>
public enum ParamAppType extends java.lang.Enum<ParamAppType>
Definiert die Art der verwendeten parametrierung in einer Testumgebung
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DefaultParamApp
Kappich-ParametrierungFakeParamApp
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
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
NoParamApp
public static final ParamAppType NoParamApp
Keine Parametrierung
-
DefaultParamApp
public static final ParamAppType DefaultParamApp
Kappich-Parametrierung
-
FakeParamApp
public static final ParamAppType FakeParamApp
Die Minimal-Implementierung FakeParamApp, die im Code übergebene Data-Objekte oder JSON-Daten als Quelle versendet (nicht über den Datenverteiler parametrierbar, keine Persistenz)
-
-
Method Detail
-
values
public static ParamAppType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ParamAppType c : ParamAppType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ParamAppType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-