Package schule.ngb.zm

Enum Class Options.PathType

java.lang.Object
java.lang.Enum<Options.PathType>
schule.ngb.zm.Options.PathType
All Implemented Interfaces:
Serializable, Comparable<Options.PathType>, java.lang.constant.Constable
Enclosing class:
Options

public static enum Options.PathType extends Enum<Options.PathType>
Arten von Bögen.

Die Werte legen fest, wie Bögen geschlossen werden sollen, wenn sie beispielsweise gefüllt werden.

Wrapper für die AWT-Konstanten in Arc2D.

  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Geschlossener Pfad, bei dem die Pfadenden direkt miteinander verbunden werden, indem eine Linie gezogen wird.
    Offener Pfad, bei dem die Pfadenden direkt miteinander verbunden werden ohne eine Linie zu ziehen.
    Geschlossener Pfad, bei dem Linien von den Pfadenden zum Mittelpunkt des Kreises, der den Kreisbogen festlegt, gezogen werden.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final int
    Der entsprechende Wert der Konstanten in Arc2D
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • OPEN

      public static final Options.PathType OPEN
      Offener Pfad, bei dem die Pfadenden direkt miteinander verbunden werden ohne eine Linie zu ziehen.
    • CLOSED

      public static final Options.PathType CLOSED
      Geschlossener Pfad, bei dem die Pfadenden direkt miteinander verbunden werden, indem eine Linie gezogen wird.
    • PIE

      public static final Options.PathType PIE
      Geschlossener Pfad, bei dem Linien von den Pfadenden zum Mittelpunkt des Kreises, der den Kreisbogen festlegt, gezogen werden.
  • Field Details

    • awt_type

      public final int awt_type
      Der entsprechende Wert der Konstanten in Arc2D
  • Method Details

    • values

      public static Options.PathType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Options.PathType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null