de.bsvrz.buv.rw.basislib.interfaces.darstellungsobjekte
Enum DarstellungsObjektZoomVerhalten

java.lang.Object
  extended by java.lang.Enum<DarstellungsObjektZoomVerhalten>
      extended by de.bsvrz.buv.rw.basislib.interfaces.darstellungsobjekte.DarstellungsObjektZoomVerhalten
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DarstellungsObjektZoomVerhalten>

public enum DarstellungsObjektZoomVerhalten
extends java.lang.Enum<DarstellungsObjektZoomVerhalten>

Dieser Aufzählungstyp beschreibt die möglichen ZoomVerhalten von DarstellungsObjekten.
Diese ZoomVerhalten werden im Interface de.bsvrz.buv.rw.basislib.IDarstellungsObjektTypZoomInfo verwendet.

Version:
$Revision: 1.1 $ / $Date: 2009/12/02 09:21:01 $ / ($Author: HofmannJ $)
Author:
Dambach-Werke GmbH, Thomas Drapp

Enum Constant Summary
DYNAMISCH
          Dies bedeutet, dass sich die Größe des DarstellungsObjekt bei unterschiedlichen Zoomstufen in horizontaler und vertikaler Richtung verändert.
FIX
          Dies bedeutet, dass sich die Größe des DarstellungsObjekt bei unterschiedlichen Zoomstufen nicht verändert.
HORIZONTAL
          Dies bedeutet, dass sich die Größe des DarstellungsObjekt bei unterschiedlichen Zoomstufen nur in horizontaler Richtung verändert.
VERTIKAL
          Dies bedeutet, dass sich die Größe des DarstellungsObjekt bei unterschiedlichen Zoomstufen nur in vertikaler Richtung verändert.
 
Method Summary
static DarstellungsObjektZoomVerhalten valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DarstellungsObjektZoomVerhalten[] 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

FIX

public static final DarstellungsObjektZoomVerhalten FIX
Dies bedeutet, dass sich die Größe des DarstellungsObjekt bei unterschiedlichen Zoomstufen nicht verändert.


DYNAMISCH

public static final DarstellungsObjektZoomVerhalten DYNAMISCH
Dies bedeutet, dass sich die Größe des DarstellungsObjekt bei unterschiedlichen Zoomstufen in horizontaler und vertikaler Richtung verändert.


HORIZONTAL

public static final DarstellungsObjektZoomVerhalten HORIZONTAL
Dies bedeutet, dass sich die Größe des DarstellungsObjekt bei unterschiedlichen Zoomstufen nur in horizontaler Richtung verändert.


VERTIKAL

public static final DarstellungsObjektZoomVerhalten VERTIKAL
Dies bedeutet, dass sich die Größe des DarstellungsObjekt bei unterschiedlichen Zoomstufen nur in vertikaler Richtung verändert.

Method Detail

values

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

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

valueOf

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