SpecialDay

public abstract class SpecialDay implements Parcelable


Represents information on a particular day over the next seven days which may have opening hours that differ from the normal operating hours.

Summary

Nested types

public abstract class SpecialDay.Builder

Builder for SpecialDay.

Public constructors

Public methods

static SpecialDay.Builder

Returns a SpecialDay.Builder initialized with the specified LocalDate.

abstract LocalDate

Returns the LocalDate for which there may be exceptional hours.

abstract boolean

Returns whether or not the day has exceptional hours.

Inherited Constants

From android.os.Parcelable
static final int
static final int
static final int
static final int

Inherited methods

From android.os.Parcelable
abstract int
int
abstract void
writeToParcel(Parcel p, int p1)

Public constructors

SpecialDay

public SpecialDay()

Public methods

builder

public static SpecialDay.Builder builder(LocalDate date)

Returns a SpecialDay.Builder initialized with the specified LocalDate.

getDate

public abstract LocalDate getDate()

Returns the LocalDate for which there may be exceptional hours.

isExceptional

public abstract boolean isExceptional()

Returns whether or not the day has exceptional hours.