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

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

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

Dieser Aufzählungstyp beschreibt die möglichen Schriftausrichtungen für die Beschriftung bei Diagrammen.


Enum Constant Summary
LINKS_NACH_RECHTS
          Schriftausrichtung von links nach rechts.
OBEN_NACH_UNTEN
          Schriftausrichtung von oben nach unten.
RECHTS_NACH_LINKS
          Schriftausrichtung von rechts nach links.
UNTEN_NACH_OBEN
          Schriftausrichtung von unten nach oben.
 
Method Summary
static IDiagramm.SchriftAusrichtung valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IDiagramm.SchriftAusrichtung[] 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

LINKS_NACH_RECHTS

public static final IDiagramm.SchriftAusrichtung LINKS_NACH_RECHTS
Schriftausrichtung von links nach rechts.


RECHTS_NACH_LINKS

public static final IDiagramm.SchriftAusrichtung RECHTS_NACH_LINKS
Schriftausrichtung von rechts nach links.


OBEN_NACH_UNTEN

public static final IDiagramm.SchriftAusrichtung OBEN_NACH_UNTEN
Schriftausrichtung von oben nach unten.


UNTEN_NACH_OBEN

public static final IDiagramm.SchriftAusrichtung UNTEN_NACH_OBEN
Schriftausrichtung von unten nach oben.

Method Detail

values

public static IDiagramm.SchriftAusrichtung[] 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.SchriftAusrichtung c : IDiagramm.SchriftAusrichtung.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.SchriftAusrichtung 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