001: /**
002: * Redistribution and use of this software and associated documentation
003: * ("Software"), with or without modification, are permitted provided
004: * that the following conditions are met:
005: *
006: * 1. Redistributions of source code must retain copyright
007: * statements and notices. Redistributions must also contain a
008: * copy of this document.
009: *
010: * 2. Redistributions in binary form must reproduce the
011: * above copyright notice, this list of conditions and the
012: * following disclaimer in the documentation and/or other
013: * materials provided with the distribution.
014: *
015: * 3. The name "Exolab" must not be used to endorse or promote
016: * products derived from this Software without prior written
017: * permission of Intalio, Inc. For written permission,
018: * please contact info@exolab.org.
019: *
020: * 4. Products derived from this Software may not be called "Exolab"
021: * nor may "Exolab" appear in their names without prior written
022: * permission of Intalio, Inc. Exolab is a registered
023: * trademark of Intalio, Inc.
024: *
025: * 5. Due credit should be given to the Exolab Project
026: * (http://www.exolab.org/).
027: *
028: * THIS SOFTWARE IS PROVIDED BY INTALIO, INC. AND CONTRIBUTORS
029: * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
030: * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
031: * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
032: * INTALIO, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
033: * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
034: * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
035: * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
036: * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
037: * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
038: * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
039: * OF THE POSSIBILITY OF SUCH DAMAGE.
040: *
041: * Copyright 1999 (C) Intalio, Inc. All Rights Reserved.
042: *
043: * $Id: Order.java 5951 2006-05-30 22:18:48Z bsnyder $
044: */package org.exolab.castor.xml.schema;
045:
046: /**
047: * An XML Schema model group Order
048: * @author <a href="mailto:kvisco@intalio.com">Keith Visco</a>
049: **/
050: public final class Order implements java.io.Serializable {
051: /** SerialVersionUID */
052: private static final long serialVersionUID = -218491941838731735L;
053:
054: public static final short ALL = 0;
055: public static final short SEQUENCE = 1;
056: public static final short CHOICE = 2;
057:
058: public static final Order all = new Order(Order.ALL);
059: public static final Order choice = new Order(Order.CHOICE);
060: public static final Order seq = new Order(Order.SEQUENCE);
061:
062: private short type = ALL;
063:
064: /**
065: * Creates a new Order with the given Type;
066: **/
067: private Order(short type) {
068: this .type = type;
069: } //-- Order
070:
071: public short getType() {
072: return this .type;
073: } //-- getType
074:
075: public String toString() {
076: switch (type) {
077: case CHOICE:
078: return "choice";
079: case SEQUENCE:
080: return "sequence";
081: default:
082: return "all";
083: }
084: }
085:
086: public static Order valueOf(String value)
087: throws IllegalArgumentException {
088: if ("all".equals(value)) {
089: return Order.all;
090: } else if ("choice".equals(value)) {
091: return Order.choice;
092: } else if ("sequence".equals(value)) {
093: return Order.seq;
094: } else {
095: StringBuffer sb = new StringBuffer();
096: sb.append(value);
097: sb.append(" is not a valid model group order.");
098: throw new IllegalArgumentException(sb.toString());
099: }
100: } //-- valueOf
101:
102: } //-- Order
|