Home | History | Annotate | Download | only in util

Lines Matching full:instance

26     /** whether this instance is mutable */
30 * Constructs an instance. It is initially mutable.
37 * Constructs an instance, explicitly indicating the mutability.
39 * @param mutable {@code true} iff this instance is mutable
46 * Makes this instance immutable.
53 * Checks to see whether or not this instance is immutable. This is the
56 * @return {@code true} iff this instance is immutable
63 * Checks to see whether or not this instance is mutable.
65 * @return {@code true} iff this instance is mutable
72 * Throws {@link MutabilityException} if this instance is
77 throw new MutabilityException("immutable instance");
82 * Throws {@link MutabilityException} if this instance is mutable.
86 throw new MutabilityException("mutable instance");