de.bsvrz.kex.kexdav.dataexchange
Enum ParameterExchangeStrategy

java.lang.Object
  extended by java.lang.Enum<ParameterExchangeStrategy>
      extended by de.bsvrz.kex.kexdav.dataexchange.ParameterExchangeStrategy
All Implemented Interfaces:
Serializable, Comparable<ParameterExchangeStrategy>

public enum ParameterExchangeStrategy
extends Enum<ParameterExchangeStrategy>

Author:
Kappich Systemberatung

Enum Constant Summary
LocalAndRemoteManagement
          Beidseitige Verwaltung
LocalAndRemoteManagementWithTrigger
          Beidseitige Verwaltung mit Trigger
LocalManagementRemoteRead
          Lokale Verwaltung, Remote lesen
LocalManagementRemoteReadWrite
          Lokale Verwaltung, Remote lesen und schreiben
RemoteManagementLocalRead
          Remote Verwaltung, Lokal lesen
RemoteManagementLocalReadWrite
          Remote Verwaltung, Lokal lesen und schreiben
 
Method Summary
static ParameterExchangeStrategy valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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. This method may be used to iterate over the constants as follows:
for (ParameterExchangeStrategy c : ParameterExchangeStrategy.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ParameterExchangeStrategy valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null