de.bsvrz.buv.rw.basislib.interfaces.diagramme
Enum IDiagramm.DatenEinfuegeArt

java.lang.Object
  extended by java.lang.Enum<IDiagramm.DatenEinfuegeArt>
      extended by de.bsvrz.buv.rw.basislib.interfaces.diagramme.IDiagramm.DatenEinfuegeArt
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IDiagramm.DatenEinfuegeArt>
Enclosing interface:
IDiagramm

public static enum IDiagramm.DatenEinfuegeArt
extends java.lang.Enum<IDiagramm.DatenEinfuegeArt>

Dieser Aufzählungstyp beschreibt die möglichen EinfügeArten für Daten bei Diagrammen.


Enum Constant Summary
HINTER
          Die Daten werden hinter der angegebenen Position eingefügt.
VOR
          Die Daten werden vor der angegebenen Position eingefügt.
 
Method Summary
static IDiagramm.DatenEinfuegeArt valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IDiagramm.DatenEinfuegeArt[] 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

VOR

public static final IDiagramm.DatenEinfuegeArt VOR
Die Daten werden vor der angegebenen Position eingefügt.


HINTER

public static final IDiagramm.DatenEinfuegeArt HINTER
Die Daten werden hinter der angegebenen Position eingefügt.

Method Detail

values

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

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

valueOf

public static IDiagramm.DatenEinfuegeArt 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