X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fde%2Ftodesbaum%2Futil%2Ffreenet%2Ffcp2%2FPriorityClass.java;fp=src%2Fde%2Ftodesbaum%2Futil%2Ffreenet%2Ffcp2%2FPriorityClass.java;h=0000000000000000000000000000000000000000;hb=38bdc433e50669e8244a63b5af59e597f88f1d29;hp=623bc5b1166511fdf5b591db14903e87f6ea6d80;hpb=f14b9fbe6d88e23920b10a75ebeba4d38390301b;p=jSite.git diff --git a/src/de/todesbaum/util/freenet/fcp2/PriorityClass.java b/src/de/todesbaum/util/freenet/fcp2/PriorityClass.java deleted file mode 100644 index 623bc5b..0000000 --- a/src/de/todesbaum/util/freenet/fcp2/PriorityClass.java +++ /dev/null @@ -1,125 +0,0 @@ -/* - * jSite - PriorityClass.java - Copyright © 2006–2012 David Roden - * - * 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 2 of the License, or - * (at your option) 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, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -package de.todesbaum.util.freenet.fcp2; - -/** - * The possible priority classes. Possible values are, in order of descending - * priority: maximum (anything more important than fproxy), - * interactive (fproxy), semi-interactive (fproxy - * immediate mode large file downloads, not to disk), updatable - * (updatable site checks), bulk (large file downloads to disk), - * prefetch, minimum. - * - * @author David Roden <droden@gmail.com> - * @version $Id$ - */ -public final class PriorityClass { - - /** Denotes maximum priority class. */ - public static final PriorityClass MAXIMUM = new PriorityClass("maximum", 0); - - /** Denotes interactive priority class. */ - public static final PriorityClass INTERACTIVE = new PriorityClass("interactive", 1); - - /** Denotes semi-interactive priority class. */ - public static final PriorityClass SEMI_INTERACTIVE = new PriorityClass("semiInteractive", 2); - - /** Denotes updatable priority class. */ - public static final PriorityClass UPDATABLE = new PriorityClass("updatable", 3); - - /** Denotes bulk priority class. */ - public static final PriorityClass BULK = new PriorityClass("bulk", 4); - - /** Denotes prefetch priority class. */ - public static final PriorityClass PREFETCH = new PriorityClass("prefetch", 5); - - /** Denotes minimum priority class. */ - public static final PriorityClass MINIMUM = new PriorityClass("minimum", 6); - - /** The name of the priority class. */ - private String name; - - /** The value of the priority class. */ - private int value; - - /** - * Creates a new priority class with the specified name and value. - * - * @param name - * The name of the priority class - * @param value - * The value of the priority class - */ - private PriorityClass(String name, int value) { - this.name = name; - this.value = value; - } - - /** - * Returns the name of this priority class. - * - * @return The name of this priority class - */ - public String getName() { - return name; - } - - /** - * Returns the value of this priority class. - * - * @return The value of this priority class - */ - public int getValue() { - return value; - } - - // - // STATIC METHODS - // - - /** - * Returns the priority class with the given name, matched case-insensitive. - * - * @param value - * The name of the priority - * @return The priority with the given name, or {@code null} if no priority - * matches the given name - */ - public static PriorityClass valueOf(String value) { - for (PriorityClass priorityClass : new PriorityClass[] { MINIMUM, PREFETCH, BULK, UPDATABLE, SEMI_INTERACTIVE, INTERACTIVE, MAXIMUM }) { - if (priorityClass.getName().equalsIgnoreCase(value)) { - return priorityClass; - } - } - return null; - } - - // - // OBJECT METHODS - // - - /** - * {@inheritDoc} - */ - @Override - public String toString() { - return name; - } - -}