Package asteroid.nodes
Class FieldNodeBuilder
- java.lang.Object
-
- asteroid.nodes.FieldNodeBuilder
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldNodebuild()Once the instance configuration has been finished, this method will return the configured instance.FieldNodeBuilderexpression(Expression initialExpression)Sets the initial expression of theFieldNodestatic FieldNodeBuilderfield(String name)Creates a builder with the field's nameFieldNodeBuildermodifiers(int modifiers)The access modifiers for the field to createFieldNodeBuilderowner(ClassNode owner)Sets the type of the instance containing the fieldFieldNodeBuildertype(Class<?> type)Sets the type of theFieldNodeFieldNodeBuildertype(ClassNode type)Sets the type of theFieldNode
-
-
-
Method Detail
-
field
public static FieldNodeBuilder field(String name)
Creates a builder with the field's name- Parameters:
name- the name of the field to create- Returns:
- an instance of
FieldNodeBuilder - Since:
- 0.4.3
-
modifiers
public FieldNodeBuilder modifiers(int modifiers)
The access modifiers for the field to create- Parameters:
modifiers- field modifiers- Returns:
- the current builder instance
- Since:
- 0.4.3
-
type
public FieldNodeBuilder type(ClassNode type)
Sets the type of theFieldNode- Parameters:
type- the type of the field to create- Returns:
- the current builder instance
- Since:
- 0.4.3
-
type
public FieldNodeBuilder type(Class<?> type)
Sets the type of theFieldNode- Parameters:
type- the type of field to create- Returns:
- the current builder instance
- Since:
- 0.4.3
-
owner
public FieldNodeBuilder owner(ClassNode owner)
Sets the type of the instance containing the field- Parameters:
owner- the node containing the field- Returns:
- the current builder instance
- Since:
- 0.4.3
-
expression
public FieldNodeBuilder expression(Expression initialExpression)
Sets the initial expression of theFieldNode- Parameters:
initialExpresion- expression to initialize the field- Returns:
- the current builder instance
- Since:
- 0.4.3
-
-