Enum DataExchangeStrategy

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<DataExchangeStrategy>, java.lang.constant.Constable

    public enum DataExchangeStrategy
    extends java.lang.Enum<DataExchangeStrategy>
    Richtung eines Online-Daten-Austausches
    • Nested Class Summary

      • Nested classes/interfaces inherited from class java.lang.Enum

        java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      DrainSender
      Übertragung von einer Quelle auf dem Remotesystem zu einem Empfänger auf dem Lokalsystem.
      ReceiverSource
      Übertragung von einer Quelle auf dem Remotesystem zu einem Empfänger auf dem Lokalsystem.
      SenderDrain
      Übertragung von einem Sender auf dem Lokalsystem zu einer Senke auf dem Remotesystem.
      SourceReceiver
      Übertragung von einer Quelle auf dem Lokalsystem zu einem Empfänger auf dem Remotesystem.
    • Method Summary

      Modifier and Type Method Description
      static DataExchangeStrategy valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static DataExchangeStrategy[] 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, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • SourceReceiver

        public static final DataExchangeStrategy SourceReceiver
        Übertragung von einer Quelle auf dem Lokalsystem zu einem Empfänger auf dem Remotesystem. KExDaV meldet sich folglich als Empfänger und Quelle an.
      • SenderDrain

        public static final DataExchangeStrategy SenderDrain
        Übertragung von einem Sender auf dem Lokalsystem zu einer Senke auf dem Remotesystem. KExDaV meldet sich folglich als Senke und Sender an.
      • DrainSender

        public static final DataExchangeStrategy DrainSender
        Übertragung von einer Quelle auf dem Remotesystem zu einem Empfänger auf dem Lokalsystem. KExDaV meldet sich folglich als Quelle und Empfänger an.
      • ReceiverSource

        public static final DataExchangeStrategy ReceiverSource
        Übertragung von einer Quelle auf dem Remotesystem zu einem Empfänger auf dem Lokalsystem. KExDaV meldet sich folglich als Sender und Senke an.
    • Method Detail

      • values

        public static DataExchangeStrategy[] 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 DataExchangeStrategy 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 name
        java.lang.NullPointerException - if the argument is null