Enum Variable.Scope
- Alle implementierten Schnittstellen:
Serializable
,Comparable<Variable.Scope>
,java.lang.constant.Constable
- Umschließende Klasse:
Variable
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-KonstantenEnum-KonstanteBeschreibungThe 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 TypMethodeBeschreibungstatic Variable.Scope
Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück.static Variable.Scope[]
values()
Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.
-
Enum-Konstanten - Details
-
OUTLET
The scope of the variable is limited to the current outlet. -
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
The variable is visible throughout the generation process of this file. -
GLOBAL
The variable is visible throughout the whole generation process.
-
-
Methodendetails
-
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
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ältNullPointerException
- wenn das Argument nicht angegeben wird
-