Package de.bsvrz.kex.kexdav.dataexchange
Enum ParameterExchangeStrategy
- java.lang.Object
-
- java.lang.Enum<ParameterExchangeStrategy>
-
- de.bsvrz.kex.kexdav.dataexchange.ParameterExchangeStrategy
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ParameterExchangeStrategy>
,java.lang.constant.Constable
public enum ParameterExchangeStrategy extends java.lang.Enum<ParameterExchangeStrategy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LocalAndRemoteManagement
Beidseitige VerwaltungLocalAndRemoteManagementWithTrigger
Beidseitige Verwaltung mit TriggerLocalManagementRemoteRead
Lokale Verwaltung, Remote lesenLocalManagementRemoteReadWrite
Lokale Verwaltung, Remote lesen und schreibenRemoteManagementLocalRead
Remote Verwaltung, Lokal lesenRemoteManagementLocalReadWrite
Remote Verwaltung, Lokal lesen und schreiben
-
Method Summary
Modifier and Type Method Description static ParameterExchangeStrategy
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ParameterExchangeStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LocalManagementRemoteRead
public static final ParameterExchangeStrategy LocalManagementRemoteRead
Lokale Verwaltung, Remote lesen
-
LocalManagementRemoteReadWrite
public static final ParameterExchangeStrategy LocalManagementRemoteReadWrite
Lokale Verwaltung, Remote lesen und schreiben
-
RemoteManagementLocalRead
public static final ParameterExchangeStrategy RemoteManagementLocalRead
Remote Verwaltung, Lokal lesen
-
RemoteManagementLocalReadWrite
public static final ParameterExchangeStrategy RemoteManagementLocalReadWrite
Remote Verwaltung, Lokal lesen und schreiben
-
LocalAndRemoteManagement
public static final ParameterExchangeStrategy LocalAndRemoteManagement
Beidseitige Verwaltung
-
LocalAndRemoteManagementWithTrigger
public static final ParameterExchangeStrategy LocalAndRemoteManagementWithTrigger
Beidseitige Verwaltung mit Trigger
-
-
Method Detail
-
values
public static ParameterExchangeStrategy[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ParameterExchangeStrategy 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
-
-