Enum Variable.Scope

java.lang.Object
java.lang.Enum<Variable.Scope>
org.apache.torque.generator.variable.Variable.Scope
Alle implementierten Schnittstellen:
Serializable, Comparable<Variable.Scope>, java.lang.constant.Constable
Umschließende Klasse:
Variable

public static enum Variable.Scope extends Enum<Variable.Scope>
The scope of a variable.
  • Verschachtelte Klassen - Übersicht

    Von Klasse geerbte verschachtelte Klassen/Schnittstellen java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum-Konstanten - Übersicht

    Enum-Konstanten
    Enum-Konstante
    Beschreibung
    The scope of the variable is the current outlet and recursively all the outlets in the merge points accessed in the generation process.
    The variable is visible throughout the generation process of this file.
    The variable is visible throughout the whole generation process.
    The scope of the variable is limited to the current outlet.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück.
    Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.

    Von Klasse geerbte Methoden java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum-Konstanten - Details

    • OUTLET

      public static final Variable.Scope OUTLET
      The scope of the variable is limited to the current outlet.
    • CHILDREN

      public static final Variable.Scope CHILDREN
      The scope of the variable is the current outlet and recursively all the outlets in the merge points accessed in the generation process.
    • FILE

      public static final Variable.Scope FILE
      The variable is visible throughout the generation process of this file.
    • GLOBAL

      public static final Variable.Scope GLOBAL
      The variable is visible throughout the whole generation process.
  • Methodendetails

    • values

      public static Variable.Scope[] values()
      Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieses Enumerationstyps in der Reihenfolge ihrer Deklaration
    • valueOf

      public static Variable.Scope valueOf(String name)
      Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enumerationskonstante in diesem Typ deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)
      Parameter:
      name - Name der zurückzugebenden Enumerationskonstante.
      Gibt zurück:
      Enumerationskonstante mit dem angegebenen Namen
      Löst aus:
      IllegalArgumentException - wenn dieser Enumerationstyp keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird