com.google.code.facebookapi.schema.PageRestaurantServices Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of facebook-java-api-schema Show documentation
Show all versions of facebook-java-api-schema Show documentation
Generated classes from XSD Schema
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2009.02.15 at 07:02:48 PM GMT-08:00
//
package com.google.code.facebookapi.schema;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.jvnet.jaxb2_commons.lang.Equals;
import org.jvnet.jaxb2_commons.lang.HashCode;
import org.jvnet.jaxb2_commons.lang.ToString;
import org.jvnet.jaxb2_commons.lang.builder.JAXBEqualsBuilder;
import org.jvnet.jaxb2_commons.lang.builder.JAXBHashCodeBuilder;
import org.jvnet.jaxb2_commons.lang.builder.JAXBToStringBuilder;
/**
* Java class for page_restaurant_services complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="page_restaurant_services">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="reserve" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="walkins" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="groups" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="kids" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="takeout" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="delivery" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="catering" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="waiter" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="outdoor" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "page_restaurant_services", propOrder = {
"reserve",
"walkins",
"groups",
"kids",
"takeout",
"delivery",
"catering",
"waiter",
"outdoor"
})
public class PageRestaurantServices
implements Equals, HashCode, ToString
{
protected boolean reserve;
protected boolean walkins;
protected boolean groups;
protected boolean kids;
protected boolean takeout;
protected boolean delivery;
protected boolean catering;
protected boolean waiter;
protected boolean outdoor;
/**
* Gets the value of the reserve property.
*
*/
public boolean isReserve() {
return reserve;
}
/**
* Sets the value of the reserve property.
*
*/
public void setReserve(boolean value) {
this.reserve = value;
}
/**
* Gets the value of the walkins property.
*
*/
public boolean isWalkins() {
return walkins;
}
/**
* Sets the value of the walkins property.
*
*/
public void setWalkins(boolean value) {
this.walkins = value;
}
/**
* Gets the value of the groups property.
*
*/
public boolean isGroups() {
return groups;
}
/**
* Sets the value of the groups property.
*
*/
public void setGroups(boolean value) {
this.groups = value;
}
/**
* Gets the value of the kids property.
*
*/
public boolean isKids() {
return kids;
}
/**
* Sets the value of the kids property.
*
*/
public void setKids(boolean value) {
this.kids = value;
}
/**
* Gets the value of the takeout property.
*
*/
public boolean isTakeout() {
return takeout;
}
/**
* Sets the value of the takeout property.
*
*/
public void setTakeout(boolean value) {
this.takeout = value;
}
/**
* Gets the value of the delivery property.
*
*/
public boolean isDelivery() {
return delivery;
}
/**
* Sets the value of the delivery property.
*
*/
public void setDelivery(boolean value) {
this.delivery = value;
}
/**
* Gets the value of the catering property.
*
*/
public boolean isCatering() {
return catering;
}
/**
* Sets the value of the catering property.
*
*/
public void setCatering(boolean value) {
this.catering = value;
}
/**
* Gets the value of the waiter property.
*
*/
public boolean isWaiter() {
return waiter;
}
/**
* Sets the value of the waiter property.
*
*/
public void setWaiter(boolean value) {
this.waiter = value;
}
/**
* Gets the value of the outdoor property.
*
*/
public boolean isOutdoor() {
return outdoor;
}
/**
* Sets the value of the outdoor property.
*
*/
public void setOutdoor(boolean value) {
this.outdoor = value;
}
public void toString(ToStringBuilder toStringBuilder) {
{
boolean theReserve;
theReserve = this.isReserve();
toStringBuilder.append("reserve", theReserve);
}
{
boolean theWalkins;
theWalkins = this.isWalkins();
toStringBuilder.append("walkins", theWalkins);
}
{
boolean theGroups;
theGroups = this.isGroups();
toStringBuilder.append("groups", theGroups);
}
{
boolean theKids;
theKids = this.isKids();
toStringBuilder.append("kids", theKids);
}
{
boolean theTakeout;
theTakeout = this.isTakeout();
toStringBuilder.append("takeout", theTakeout);
}
{
boolean theDelivery;
theDelivery = this.isDelivery();
toStringBuilder.append("delivery", theDelivery);
}
{
boolean theCatering;
theCatering = this.isCatering();
toStringBuilder.append("catering", theCatering);
}
{
boolean theWaiter;
theWaiter = this.isWaiter();
toStringBuilder.append("waiter", theWaiter);
}
{
boolean theOutdoor;
theOutdoor = this.isOutdoor();
toStringBuilder.append("outdoor", theOutdoor);
}
}
public String toString() {
final ToStringBuilder toStringBuilder = new JAXBToStringBuilder(this);
toString(toStringBuilder);
return toStringBuilder.toString();
}
public void equals(Object object, EqualsBuilder equalsBuilder) {
if (!(object instanceof PageRestaurantServices)) {
equalsBuilder.appendSuper(false);
return ;
}
if (this == object) {
return ;
}
final PageRestaurantServices that = ((PageRestaurantServices) object);
equalsBuilder.append(this.isReserve(), that.isReserve());
equalsBuilder.append(this.isWalkins(), that.isWalkins());
equalsBuilder.append(this.isGroups(), that.isGroups());
equalsBuilder.append(this.isKids(), that.isKids());
equalsBuilder.append(this.isTakeout(), that.isTakeout());
equalsBuilder.append(this.isDelivery(), that.isDelivery());
equalsBuilder.append(this.isCatering(), that.isCatering());
equalsBuilder.append(this.isWaiter(), that.isWaiter());
equalsBuilder.append(this.isOutdoor(), that.isOutdoor());
}
public boolean equals(Object object) {
if (!(object instanceof PageRestaurantServices)) {
return false;
}
if (this == object) {
return true;
}
final EqualsBuilder equalsBuilder = new JAXBEqualsBuilder();
equals(object, equalsBuilder);
return equalsBuilder.isEquals();
}
public void hashCode(HashCodeBuilder hashCodeBuilder) {
hashCodeBuilder.append(this.isReserve());
hashCodeBuilder.append(this.isWalkins());
hashCodeBuilder.append(this.isGroups());
hashCodeBuilder.append(this.isKids());
hashCodeBuilder.append(this.isTakeout());
hashCodeBuilder.append(this.isDelivery());
hashCodeBuilder.append(this.isCatering());
hashCodeBuilder.append(this.isWaiter());
hashCodeBuilder.append(this.isOutdoor());
}
public int hashCode() {
final HashCodeBuilder hashCodeBuilder = new JAXBHashCodeBuilder();
hashCode(hashCodeBuilder);
return hashCodeBuilder.toHashCode();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy