net.ogdf.lib
Enum eLabelTyp

java.lang.Object
  extended by java.lang.Enum<eLabelTyp>
      extended by net.ogdf.lib.eLabelTyp
All Implemented Interfaces:
Serializable, Comparable<eLabelTyp>

public enum eLabelTyp
extends Enum<eLabelTyp>

Rating red

Enum Constant Summary
elEnd1
           
elEnd2
           
elMult1
           
elMult2
           
elName
           
 
Method Summary
static eLabelTyp swigToEnum(int swigValue)
           
 int swigValue()
           
static eLabelTyp valueOf(String name)
          Returns the enum constant of this type with the specified name.
static eLabelTyp[] 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

elEnd1

public static final eLabelTyp elEnd1

elMult1

public static final eLabelTyp elMult1

elName

public static final eLabelTyp elName

elEnd2

public static final eLabelTyp elEnd2

elMult2

public static final eLabelTyp elMult2
Method Detail

values

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

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

valueOf

public static eLabelTyp 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

swigValue

public final int swigValue()

swigToEnum

public static eLabelTyp swigToEnum(int swigValue)