Back to project page AndroidPlaces.
The source code is released under:
Apache License
If you think the Android project AndroidPlaces listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2014 Brian Lee//w w w. j a va 2 s . c o m * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.tigerpenguin.places.model; import android.os.Parcel; import android.os.Parcelable; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; public class OpeningHours extends JsonModel implements Parcelable { @JsonProperty(OPEN_NOW) private boolean openNow; @JsonProperty(PERIODS) private List<Period> periods; public OpeningHours() { // required for Jackson } @SuppressWarnings("unchecked") public OpeningHours(Parcel in) { openNow = (in.readInt() == 1); periods = in.readArrayList(Period.class.getClassLoader()); } public boolean isOpenNow() { return openNow; } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeInt(openNow ? 1 : 0); dest.writeList(periods); } public static final Creator<OpeningHours> CREATOR = new Creator<OpeningHours>() { @Override public OpeningHours createFromParcel(Parcel source) { return new OpeningHours(source); } @Override public OpeningHours[] newArray(int size) { return new OpeningHours[size]; } }; }