You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.7 KiB
Java
98 lines
2.7 KiB
Java
/*
|
|
* Copyright (c) 2004-2015 Stuart Boston
|
|
*
|
|
* This file is part of TheMovieDB API.
|
|
*
|
|
* TheMovieDB API is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* TheMovieDB API is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with TheMovieDB API. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
package com.omertron.themoviedbapi.model;
|
|
|
|
import com.omertron.themoviedbapi.model2.AbstractJsonMapping;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import org.apache.commons.lang3.builder.EqualsBuilder;
|
|
import org.apache.commons.lang3.builder.HashCodeBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
/**
|
|
* @author Stuart
|
|
*/
|
|
public class Translation extends AbstractJsonMapping {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/*
|
|
* Properties
|
|
*/
|
|
@JsonProperty("english_name")
|
|
private String englishName;
|
|
@JsonProperty("iso_639_1")
|
|
private String isoCode;
|
|
@JsonProperty("name")
|
|
private String name;
|
|
|
|
public String getEnglishName() {
|
|
return englishName;
|
|
}
|
|
|
|
public String getIsoCode() {
|
|
return isoCode;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setEnglishName(String englishName) {
|
|
this.englishName = englishName;
|
|
}
|
|
|
|
public void setIsoCode(String isoCode) {
|
|
this.isoCode = isoCode;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object obj) {
|
|
if (obj instanceof Translation) {
|
|
final Translation other = (Translation) obj;
|
|
return new EqualsBuilder()
|
|
.append(name, other.name)
|
|
.append(englishName, other.englishName)
|
|
.append(isoCode, other.isoCode)
|
|
.isEquals();
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return new HashCodeBuilder()
|
|
.append(englishName)
|
|
.append(isoCode)
|
|
.append(name)
|
|
.toHashCode();
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return ToStringBuilder.reflectionToString(this, ToStringStyle.SIMPLE_STYLE);
|
|
}
|
|
}
|