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

Java tutorial

Introduction

Here is the source code for com.tigerpenguin.places.model.AspectRating.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 AspectRating extends JsonModel implements Parcelable {

    @JsonProperty(TYPE)
    private AspectType aspectType;

    @JsonProperty(RATING)
    private int rating;

    public AspectRating() {
        // required for Jackson
    }

    public AspectRating(Parcel in) {
        aspectType = (AspectType) in.readSerializable();
        rating = in.readInt();
    }

    public AspectType getAspectType() {
        return aspectType;
    }

    public int getRating() {
        return rating;
    }

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

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeSerializable(aspectType);
        dest.writeInt(rating);
    }

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

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