Name Immutable Intent Create an object whose state never changes Structure - all variables are private and no method to change their values - or, all variables are final (keep in mind "blank final") - or, access a mutable object through an immutable interface (not foolproof)