All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.placesapiclient.client.entity.OpeningHours Maven / Gradle / Ivy

The newest version!
package com.googlecode.placesapiclient.client.entity;

/**
 */
public class OpeningHours {

    /**
     * Boolean value indicating if the Place is open at the current time.
     */
    private Boolean openNow;

    public Boolean getOpenNow() {
        return openNow;
    }

    public void setOpenNow(Boolean openNow) {
        this.openNow = openNow;
    }


    @Override
    public String toString() {
        final StringBuilder sb = new StringBuilder("OpeningHours{");
        sb.append("openNow=").append(openNow);
        sb.append('}');
        return sb.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy