|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<MulticastSender.sendingMethod>
zisko.multicastor.program.model.MulticastSender.sendingMethod
public static 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 |
---|
public static final MulticastSender.sendingMethod NO_SLEEP
public static final MulticastSender.sendingMethod PEAK
public static final MulticastSender.sendingMethod SLEEP_MULTIPLE
Method Detail |
---|
public static MulticastSender.sendingMethod[] values()
for (MulticastSender.sendingMethod c : MulticastSender.sendingMethod.values()) System.out.println(c);
public static MulticastSender.sendingMethod valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |