package serializers.kryo;
import java.util.ArrayList;
import java.util.List;
public class Media {
public enum Player {
JAVA, FLASH
}
public Player _player;
public String _uri;
public String _title;
public int _width;
public int _height;
public String _format;
public long _duration;
public long _size;
public int _bitrate;
public List<String> _persons;
public String _copyright;
public Media () {
}
public Media (String copyright, String format, Player player, String title, String uri, long duration, long size, int height,
int width, int bitrate) {
_copyright = copyright;
_duration = duration;
_format = format;
_height = height;
_player = player;
_size = size;
_title = title;
_uri = uri;
_width = width;
_bitrate = bitrate;
}
public Player getPlayer () {
return _player;
}
public void setPlayer (Player player) {
_player = player;
}
public String getUri () {
return _uri;
}
public void setUri (String uri) {
_uri = uri;
}
public String getTitle () {
return _title;
}
public void setTitle (String title) {
_title = title;
}
public int getWidth () {
return _width;
}
public void setWidth (int width) {
_width = width;
}
public int getHeight () {
return _height;
}
public void setHeight (int height) {
_height = height;
}
public String getFormat () {
return _format;
}
public void setFormat (String format) {
_format = format;
}
public long getDuration () {
return _duration;
}
public void setDuration (long duration) {
_duration = duration;
}
public long getSize () {
return _size;
}
public void setSize (long size) {
_size = size;
}
public int getBitrate () {
return _bitrate;
}
public void setBitrate (int bitrate) {
this._bitrate = bitrate;
}
public List<String> getPersons () {
return _persons;
}
public void setPersons (List<String> p) {
_persons = p;
}
public void addToPerson (String person) {
if (null == _persons) {
_persons = new ArrayList<String>();
}
_persons.add(person);
}
public String getCopyright () {
return _copyright;
}
public void setCopyright (String copyright) {
_copyright = copyright;
}
public int hashCode () {
final int prime = 31;
int result = 1;
result = prime * result + _bitrate;
result = prime * result + ((_copyright == null) ? 0 : _copyright.hashCode());
result = prime * result + (int)(_duration ^ (_duration >>> 32));
result = prime * result + ((_format == null) ? 0 : _format.hashCode());
result = prime * result + _height;
result = prime * result + ((_persons == null) ? 0 : _persons.hashCode());
result = prime * result + ((_player == null) ? 0 : _player.hashCode());
result = prime * result + (int)(_size ^ (_size >>> 32));
result = prime * result + ((_title == null) ? 0 : _title.hashCode());
result = prime * result + ((_uri == null) ? 0 : _uri.hashCode());
result = prime * result + _width;
return result;
}
public boolean equals (Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (getClass() != obj.getClass()) return false;
Media other = (Media)obj;
if (_bitrate != other._bitrate) return false;
if (_copyright == null) {
if (other._copyright != null) return false;
} else if (!_copyright.equals(other._copyright)) return false;
if (_duration != other._duration) return false;
if (_format == null) {
if (other._format != null) return false;
} else if (!_format.equals(other._format)) return false;
if (_height != other._height) return false;
if (_persons == null) {
if (other._persons != null) return false;
} else if (!_persons.equals(other._persons)) return false;
if (_player == null) {
if (other._player != null) return false;
} else if (!_player.equals(other._player)) return false;
if (_size != other._size) return false;
if (_title == null) {
if (other._title != null) return false;
} else if (!_title.equals(other._title)) return false;
if (_uri == null) {
if (other._uri != null) return false;
} else if (!_uri.equals(other._uri)) return false;
if (_width != other._width) return false;
return true;
}
public String toString () {
StringBuilder sb = new StringBuilder();
sb.append("[Media ");
sb.append("width=").append(_width);
sb.append(", height=").append(_height);
sb.append(", duration=").append(_duration);
sb.append(", size=").append(_size);
sb.append(", bitrate=").append(_bitrate);
sb.append(", player=").append(_player);
sb.append(", uri=").append(_uri);
sb.append(", title=").append(_title);
sb.append(", format=").append(_format);
sb.append(", persons=").append(_persons);
sb.append(", copyright=").append(_copyright);
sb.append("]");
return sb.toString();
}
}
|