Its used for constants (note that constants, by style, should be all capital letters, separated by underscores). For something you never want to change by accident in your code:
public final MAX_NUMBER_USERS = 10;
final will just ensure that that number is never changed.