Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
commons-lang-1.0.1.jar - Apache Commons Lang
commons-lang-1.0.1.jar is the JAR file for Apache Commons Lang 1.0.1, which provides a host of helper utilities for the java.lang API.
JAR File Size and Download Location:
File name: commons-lang-1.0.1.jar File size: 63980 bytes Date modified: 11/22/2002 Download: Apache Commons Lang Website
✍: FYIcenter.com
⏎ org/apache/commons/lang/enum/ValuedEnum.java
/* ==================================================================== * The Apache Software License, Version 1.1 * * Copyright (c) 2002 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, if * any, must include the following acknowlegement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowlegement may appear in the software itself, * if and wherever such third-party acknowlegements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived * from this software without prior written permission. For written * permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache" * nor may "Apache" appear in their names without prior written * permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. */ package org.apache.commons.lang.enum; import java.util.Iterator; import java.util.List; /** * Abstract superclass for type-safe enums with integer values. * <p> * <em>NOTE:</em>Due to the way in which Java ClassLoaders work, comparing Enum objects * should always be done using the equals() method, not ==. The equals() method will * try == first so in most cases the effect is the same. * <p> * To use this class, it must be subclassed. For example: * * <pre> * public final class JavaVersion extends ValuedEnum { * //standard enums for version of JVM * public static final int JAVA1_0_VALUE = 100; * public static final int JAVA1_1_VALUE = 110; * public static final int JAVA1_2_VALUE = 120; * public static final int JAVA1_3_VALUE = 130; * public static final JavaVersionEnum JAVA1_0 = new JavaVersionEnum( "Java 1.0", JAVA1_0_VALUE ); * public static final JavaVersionEnum JAVA1_1 = new JavaVersionEnum( "Java 1.1", JAVA1_1_VALUE ); * public static final JavaVersionEnum JAVA1_2 = new JavaVersionEnum( "Java 1.2", JAVA1_2_VALUE ); * public static final JavaVersionEnum JAVA1_3 = new JavaVersionEnum( "Java 1.3", JAVA1_3_VALUE ); * * private JavaVersionEnum(String name, int value) { * super( name, value ); * } * * public static JavaVersionEnum getEnum(String javaVersion) { * return (JavaVersionEnum) getEnum(JavaVersionEnum.class, javaVersion); * } * * public static JavaVersionEnum getEnum(int javaVersion) { * return (JavaVersionEnum) getEnum(JavaVersionEnum.class, javaVersion); * } * * public static Map getEnumMap() { * return getEnumMap(JavaVersionEnum.class); * } * * public static List getEnumList() { * return getEnumList(JavaVersionEnum.class); * } * * public static Iterator iterator() { * return iterator(JavaVersionEnum.class); * } * } * </pre> * * The above class could then be used as follows: * <pre> * public void doSomething(JavaVersion ver) { * switch (ver.getValue()) { * case JAVA1_0_VALUE: * // ... * break; * case JAVA1_1_VALUE: * // ... * break; * //... * } * } * </pre> * <p> * As shown, each enum has a name and a value. These can be accessed using * <code>getName</code> and <code>getValue</code>. * <p> * The <code>getEnum</code> and <code>iterator</code> methods are recommended. * Unfortunately, Java restrictions require these to be coded as shown in each subclass. * An alternative choice is to use the {@link EnumUtils} class. * <p> * <em>NOTE:</em> This class originated in the Jakarta Avalon project. * </p> * * @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a> * @version $Id: ValuedEnum.java,v 1.1 2002/08/11 23:17:54 scolebourne Exp $ */ public abstract class ValuedEnum extends Enum { /** * The value contained in enum. */ private final int iValue; /** * Constructor for enum item. * * @param name the name of enum item. * @param value the value of enum item. */ protected ValuedEnum(String name, int value) { super(name); iValue = value; } /** * Gets an Enum object by class and value. * This method loops through the list of Enums, thus if there * are many Enums this will be slow. * * @param enumClass the class of the Enum to get * @param value the value of the Enum to get * @return the enum object, or null if the enum does not exist * @throws IllegalArgumentException if the enum class is null */ protected static Enum getEnum(Class enumClass, int value) { if (enumClass == null) { throw new IllegalArgumentException("The Enum Class must not be null"); } List list = Enum.getEnumList(enumClass); for (Iterator it = list.iterator(); it.hasNext();) { ValuedEnum enum = (ValuedEnum) it.next(); if (enum.getValue() == value) { return enum; } } return null; } /** * Get value of enum item. * * @return the enum item's value. */ public final int getValue() { return iValue; } /** * Tests for order. The default ordering is numeric by value, but this * can be overridden by subclasses. * * @see java.lang.Comparable#compareTo(Object) * @param other the other object to compare to * @return -ve if this is less than the other object, +ve if greater than, 0 of equal * @throws ClassCastException if other is not an Enum * @throws NullPointerException if other is null */ public int compareTo(Object other) { return iValue - ((ValuedEnum) other).iValue; } /** * Human readable description of this Enum item. For use when debugging. * * @return String in the form <code>type[name=value]</code>, for example: * <code>JavaVersion[Java 1.0=100]</code>. Note that the package name is * stripped from the type name. */ public String toString() { String shortName = getClass().getName(); int pos = shortName.lastIndexOf('.'); if (pos != -1) { shortName = shortName.substring(pos + 1); } return shortName + "[" + getName() + "=" + getValue() + "]"; } }
⏎ org/apache/commons/lang/enum/ValuedEnum.java
⇒ Using commons-lang3.jar in Java Programs
⇐ commons-lang-2.6.jar - Apache Commons Lang
2017-04-15, 20420👍, 0💬
Popular Posts:
jlGui is a music player for the Java platform. It is based on Java Sound 1.0 (i.e. JDK 1.3+). It sup...
JDK 17 jdk.compiler.jmod is the JMOD file for JDK 17 Compiler tool, which can be invoked by the "jav...
JDK 11 jdk.internal.le.jmod is the JMOD file for JDK 11 Internal Line Editing module. JDK 11 Interna...
JDK 17 jdk.localedata.jmod is the JMOD file for JDK 17 Localedata module. JDK 17 Locale Data module ...
JDK 7 tools.jar is the JAR file for JDK 7 tools. It contains Java classes to support different JDK t...