com.tigerpenguin.places.model.DayTime.java Source code

Java tutorial

Introduction

Here is the source code for com.tigerpenguin.places.model.DayTime.java

Source

/*
 * Copyright (C) 2014 Brian Lee
 *
 * 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;

public class DayTime extends JsonModel implements Parcelable {

    @JsonProperty(DAY)
    private DayOfWeek dayOfWeek;

    @JsonProperty(TIME)
    private String time;

    public DayTime() {
        // required for Jackson
    }

    public DayTime(Parcel in) {
        dayOfWeek = (DayOfWeek) in.readSerializable();
        time = in.readString();
    }

    public DayOfWeek getDayOfWeek() {
        return dayOfWeek;
    }

    public String getTime() {
        return time;
    }

    @Override
    public int describeContents() {
        return 0;
    }

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeSerializable(dayOfWeek);
        dest.writeString(time);
    }

    public static final Creator<DayTime> CREATOR = new Creator<DayTime>() {
        @Override
        public DayTime createFromParcel(Parcel source) {
            return new DayTime(source);
        }

        @Override
        public DayTime[] newArray(int size) {
            return new DayTime[size];
        }
    };
}