
com.googlecode.placesapiclient.client.entity.OpeningHours Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of places-api-client Show documentation
Show all versions of places-api-client Show documentation
Java client for Google Places service
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