This is a Java keyword that specifies:

  • A variable cannot change (constant)
  • A class cannot be extended

Boilerplate

final myvar = 20;
 
// ...
 
protected final BooleanExpression getOperand(){
	return this.operand;
}