de.mediathekview.mlib.tool.MSLong Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MLib Show documentation
Show all versions of MLib Show documentation
A central library with tools and utils for the MediathekView Client and the MediathekView Server
The newest version!
/*
* MediathekView
* Copyright (C) 2013 W. Xaver
* W.Xaver[at]googlemail.com
* http://zdfmediathk.sourceforge.net/
*
* This program 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.
*
* This program 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 this program. If not, see .
*/
package de.mediathekview.mlib.tool;
import de.mediathekview.mlib.daten.DatenFilm;
public class MSLong implements Comparable {
public Long l = 0L;
public String s = "";
public MSLong() {
}
public MSLong(long ll) {
l = ll;
s = l.toString();
}
public MSLong(DatenFilm film) {
if (film.arr[DatenFilm.FILM_GROESSE].equals("<1")) {
film.arr[DatenFilm.FILM_GROESSE] = "1";
}
try {
if (!film.arr[DatenFilm.FILM_GROESSE].isEmpty()) {
l = Long.valueOf(film.arr[DatenFilm.FILM_GROESSE]);
s = film.arr[DatenFilm.FILM_GROESSE];
}
} catch (Exception ex) {
Log.errorLog(649891025, ex, "String: " + film.arr[DatenFilm.FILM_GROESSE]);
l = 0L;
s = "";
}
}
@Override
public String toString() {
return s;
}
@Override
public int compareTo(MSLong ll) {
return (l.compareTo(ll.l));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy