Place abstract class
Represents a bookmarkable location in an app. Implementations are expected to provide correct {@link Object#equals(Object)} and {@link Object#hashCode()} methods.
abstract class Place {
/**
* The null place.
*/
static final Place NOWHERE = new _Place();
}