Package org.drools.drl.ast.dsl
Interface DeclareDescrBuilder
-
- All Superinterfaces:
DescrBuilder<PackageDescrBuilder,PackageDescr>
- All Known Implementing Classes:
DeclareDescrBuilderImpl
public interface DeclareDescrBuilder extends DescrBuilder<PackageDescrBuilder,PackageDescr>
A descriptor builder for declare statements
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EntryPointDeclarationDescrBuilderentryPoint()Declares a new entry pointEnumDeclarationDescrBuilderenumerative()Declares a new enumTypeDeclarationDescrBuildertype()Declares a new typeWindowDeclarationDescrBuilderwindow()Declares a new window-
Methods inherited from interface org.drools.drl.ast.dsl.DescrBuilder
end, endCharacter, endLocation, getDescr, startCharacter, startLocation
-
-
-
-
Method Detail
-
entryPoint
EntryPointDeclarationDescrBuilder entryPoint()
Declares a new entry point- Returns:
- the descriptor builder for the entry point
-
type
TypeDeclarationDescrBuilder type()
Declares a new type- Returns:
- the descriptor builder for the type
-
window
WindowDeclarationDescrBuilder window()
Declares a new window- Returns:
- the descriptor builder for the window
-
enumerative
EnumDeclarationDescrBuilder enumerative()
Declares a new enum- Returns:
- the descriptor builder for the enum
-
-