zisko.multicastor.program.data
Enum MulticastData.Typ

java.lang.Object
  extended by java.lang.Enum<MulticastData.Typ>
      extended by zisko.multicastor.program.data.MulticastData.Typ
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MulticastData.Typ>
Enclosing class:
MulticastData

public static enum MulticastData.Typ
extends java.lang.Enum<MulticastData.Typ>


Enum Constant Summary
CONFIG
           
L2_RECEIVER
           
L2_SENDER
           
L3_RECEIVER
           
L3_SENDER
           
UNDEFINED
           
 
Method Summary
static MulticastData.Typ valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MulticastData.Typ[] 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

UNDEFINED

public static final MulticastData.Typ UNDEFINED

CONFIG

public static final MulticastData.Typ CONFIG

L3_SENDER

public static final MulticastData.Typ L3_SENDER

L3_RECEIVER

public static final MulticastData.Typ L3_RECEIVER

L2_SENDER

public static final MulticastData.Typ L2_SENDER

L2_RECEIVER

public static final MulticastData.Typ L2_RECEIVER
Method Detail

values

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

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

valueOf

public static MulticastData.Typ 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