zisko.multicastor.program.model
Enum MulticastSender.sendingMethod

java.lang.Object
  extended by java.lang.Enum<MulticastSender.sendingMethod>
      extended by zisko.multicastor.program.model.MulticastSender.sendingMethod
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MulticastSender.sendingMethod>
Enclosing class:
MulticastSender

public static enum MulticastSender.sendingMethod
extends java.lang.Enum<MulticastSender.sendingMethod>

Variablen fuer die verschiedenen Sendemethoden


Enum Constant Summary
NO_SLEEP
          Senden unter Volllast, ohne auf die angegebene Paketrate zu achten
PEAK
          Alle Pakete werden am Anfang der Sekunde gesendet, danach wird der Thread fuer den Rest der Sekunde in den sleep geschickt
SLEEP_MULTIPLE
          Nach jedem Paket wird eine errechnete Zeitspanne der thread auf sleep gesetzt (luesst zur Zeit keine hohen Paketraten zu)
 
Method Summary
static MulticastSender.sendingMethod valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MulticastSender.sendingMethod[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NO_SLEEP

public static final MulticastSender.sendingMethod NO_SLEEP
Senden unter Volllast, ohne auf die angegebene Paketrate zu achten


PEAK

public static final MulticastSender.sendingMethod PEAK
Alle Pakete werden am Anfang der Sekunde gesendet, danach wird der Thread fuer den Rest der Sekunde in den sleep geschickt


SLEEP_MULTIPLE

public static final MulticastSender.sendingMethod SLEEP_MULTIPLE
Nach jedem Paket wird eine errechnete Zeitspanne der thread auf sleep gesetzt (luesst zur Zeit keine hohen Paketraten zu)

Method Detail

values

public static MulticastSender.sendingMethod[] 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 (MulticastSender.sendingMethod c : MulticastSender.sendingMethod.values())
    System.out.println(c);

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

valueOf

public static MulticastSender.sendingMethod 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