This page answers common how-to questions that may come up when using AutoValue. You should read and understand the Introduction first.
Questions specific to usage of the builder option are documented separately; for this, start by reading AutoValue with builders.
How do I...
- ... also generate a builder for my value class?
- ... include
with-
methods on my value class for creating slightly altered instances? - ... use (or not use) JavaBeans-style name prefixes?
- ... use nullable properties?
- ... perform other validation?
- ... use a property of a mutable type?
- ... use a custom implementation of
equals
, etc.? - ... have multiple
create
methods, or name it/them differently? - ... ignore certain properties in
equals
, etc.? - ... have AutoValue also implement abstract methods from my supertypes?
- ... also include setter (mutator) methods?
- ... have one
@AutoValue
class extend another? - ... keep my accessor methods private?
- ... expose a constructor, not factory method, as my public creation API?
- ... use AutoValue on an interface, not abstract class?
- ... memoize ("cache") derived properties?
Please see AutoValue with builders.
This is a somewhat common pattern among immutable classes. You can't have setters, but you can have methods that act similarly to setters by returning a new immutable instance that has one property changed.
To add a wither to your class, simply write the abstract method and AutoValue will generate the concrete method for you.
/**
* @AutoValue
*/
abstract class Animal
{
public static function create(String $name, int $numberOfLegs): self
{
return new AutoValue_Animal([
'name' => $name,
'numberOfLegs' => $numberOfLegs,
]);
}
abstract function name(): string;
abstract function withName(string $name): self;
abstract function numberOfLegs(): int;
abstract function equals($value): bool;
}
Note that it's your free choice whether to make withName
public or protected.
Some developers prefer to name their accessors with a get-
or is-
prefix,
but would prefer that only the "bare" property name be used in toString
and
for the generated constructor's parameter names.
AutoValue will do exactly this, but only if you are using these prefixes
consistently. In that case, it infers your intended property name by first
stripping the get-
or is-
prefix, then adjusting the case of what remains
using lcfirst().
Note that, in keeping with the JavaBeans specification, the is-
prefix is only
allowed on boolean
-returning methods. get-
is allowed on any type of
accessor.
If you want to allow null values for a property, simply use PHP 7.1's nullable parameter and return types where applicable. Example:
/**
* @AutoValue
*/
abstract class Foo
{
static function create(?Bar $bar): self
{
return new AutoValue_Foo(['bar' => $bar]);
}
abstract function bar(): ?Bar;
}
For precondition checks or pre-processing, just add them to your factory method:
static function create(string $first, string $second): self
{
assert(!empty($first));
return new AutoValue_MyType(['first' => $first, 'second' => trim($second)]);
}
AutoValue classes are meant and expected to be immutable. But sometimes you would want to take a mutable type and use it as a property. In these cases:
First, check if the mutable type has a corresponding immutable cousin. For
example, the DateTime
has an immutable counterpart DateTimeImmutable
. If so,
use the immutable type for your property, and only accept the mutable type
during construction:
/**
* @AutoValue
*/
abstract class DateTimeExample
{
static function create(DateTime $date): self
{
return new AutoValue_DateTimeExample(['date' => DateTimeImmutable::fromMutable($date)]);
}
abstract function date(): DateTimeImmutable;
}
Note: this is a perfectly sensible practice, not an ugly workaround!
If there is no suitable immutable type to use, you'll need to proceed with caution. Your static factory method should pass a clone of the passed object to the generated constructor. Your accessor method should document a very loud warning never to mutate the object returned.
/**
* @AutoValue
*/
abstract class MutableExample
{
static function create(MutablePropertyType $ouch): self
{
// Replace `clone` below with the right copying code for this type
return new AutoValue_MutableExample(['ouch' => clone $ouch]);
}
/**
* Returns the ouch associated with this object; <b>do not mutate</b> the
* returned object.
*/
abstract function ouch(): MutablePropertyType;
}
Warning: this is an ugly workaround, not a perfectly sensible practice! Callers can trivially break the invariants of the immutable class by mutating the accessor's return value. An example where something can go wrong: AutoValue objects can be used as keys in Maps.
Simply write your custom implementation; AutoValue will notice this and will skip generating its own. Your hand-written logic will thus be inherited on the concrete implementation class. We call this underriding the method.
Best practice: mark your underriding methods final
to make it clear to future
readers that these methods aren't overridden by AutoValue.
Just do it! AutoValue doesn't actually care. This best practice item may be relevant.
Suppose your value class has an extra field that shouldn't be included in
equals
.
If this is because it is a derived value based on other properties, see How do I memoize derived properties?.
Otherwise, first make certain that you really want to do this. It is often, but not always, a mistake. Remember that libraries will treat two equal instances as absolutely interchangeable with each other. Whatever information is present in this extra field could essentially "disappear" when you aren't expecting it, for example when your value is stored and retrieved from certain collections.
If you're sure, here is how to do it:
/**
* @AutoValue
*/
abstract class IgnoreExample
{
static function create(string $normalProperty, string $ignoredProperty): self
{
$ie = new AutoValue_IgnoreExample(['normalProperty' => $normalProperty]);
$ie->ignoredProperty = $ignoredProperty;
return $ie;
}
abstract function normalProperty(): string;
private $ignoredProperty;
final public function ignoredProperty(): string
{
return $this->ignoredProperty;
}
}
AutoValue will recognize every abstract accessor method whether it is defined directly in your own hand-written class or in a supertype.
You can't; AutoValue only generates immutable value classes.
Note that giving value semantics to a mutable type is widely considered a questionable practice in the first place. Equal instances of a value class are treated as interchangeable, but they can't truly be interchangeable if one might be mutated and the other not.
This ability is intentionally not supported, because there is no way to do it correctly. See Effective Java, 2nd Edition Item 8: "Obey the general contract when overriding equals".
We're sorry. This is one of the rare and unfortunate restrictions AutoValue's approach places on your API. Your accessor methods don't have to be public, but they must be at least protected.
We're sorry. This is one of the rare restrictions AutoValue's approach places on your API. However, note that static factory methods are recommended over public constructors by Effective Java, Item 1.
Interfaces are not allowed. The only advantage of interfaces we're aware of is
that you can omit abstract
from the methods. That's not much. On the
other hand, you would lose the immutability guarantee, and you'd also invite
more of the kind of bad behavior described in this best-practices
item. On balance, we don't think it's worth it.
Sometimes your class has properties that are derived from the ones that AutoValue implements. You'd typically implement them with a concrete method that uses the other properties:
/**
* @AutoValue
*/
abstract class Foo
{
abstract function barProperty(): Bar;
function derivedProperty(): string
{
return someFunctionOf($this->barProperty());
}
}
But what if someFunctionOf(Bar)
is expensive? You'd like to calculate it only
one time, then cache and reuse that value for all future calls. Normally,
lazy initialization involves a bit of boilerplate.
Instead, just write the derived-property accessor method as above, and
annotate it with @Memoized
. Then AutoValue will override that method to
return a stored value after the first call:
/**
* @AutoValue
*/
abstract class Foo
{
abstract function barProperty(): Bar;
/**
* @Memoized
*/
function derivedProperty(): string
{
return someFunctionOf($this->barProperty());
}
}
Then your method will be called at most once.
The annotated method must have the usual form of an accessor method, and may not
be abstract
, final
, or private
.
The stored value will not be used in the implementation of equals
.