001/*
002 * Units of Measurement Systems
003 * Copyright (c) 2005-2017, Jean-Marie Dautelle, Werner Keil and others.
004 *
005 * All rights reserved.
006 *
007 * Redistribution and use in source and binary forms, with or without modification,
008 * are permitted provided that the following conditions are met:
009 *
010 * 1. Redistributions of source code must retain the above copyright notice,
011 *    this list of conditions and the following disclaimer.
012 *
013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
015 *
016 * 3. Neither the name of JSR-363, Units of Measurement nor the names of their contributors may be used to
017 *    endorse or promote products derived from this software without specific prior written permission.
018 *
019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
029 */
030package systems.uom.ucum.internal.format;
031
032/**
033 * Describes the input token stream.
034 *
035 * @version 0.6, March 15, 2017
036 */
037
038public final class Token {
039
040    /**
041     * The Serialization identifier for this class. Increment only if the
042     * <i>serialized</i> form of the class changes.
043     */
044    // private static final long serialVersionUID = 2188279658897600591L;
045
046    /**
047     * An integer that describes the kind of this token. This numbering system
048     * is determined by JavaCCParser, and a table of these numbers is stored in
049     * the file ...Constants.java.
050     */
051    public int kind;
052
053    /** The line number of the first character of this Token. */
054    public int beginLine;
055    /** The column number of the first character of this Token. */
056    public int beginColumn;
057    /** The line number of the last character of this Token. */
058    public int endLine;
059    /** The column number of the last character of this Token. */
060    public int endColumn;
061
062    /**
063     * The string image of the token.
064     */
065    public String image;
066
067    /**
068     * A reference to the next regular (non-special) token from the input
069     * stream. If this is the last token from the input stream, or if the token
070     * manager has not read tokens beyond this one, this field is set to null.
071     * This is true only if this token is also a regular token. Otherwise, see
072     * below for a description of the contents of this field.
073     */
074    public Token next;
075
076    /**
077     * This field is used to access special tokens that occur prior to this
078     * token, but after the immediately preceding regular (non-special) token.
079     * If there are no such special tokens, this field is set to null. When
080     * there are more than one such special token, this field refers to the last
081     * of these special tokens, which in turn refers to the next previous
082     * special token through its specialToken field, and so on until the first
083     * special token (whose specialToken field is null). The next fields of
084     * special tokens refer to other special tokens that immediately follow it
085     * (without an intervening regular token). If there is no such token, this
086     * field is null.
087     */
088    public Token specialToken;
089
090    /**
091     * An optional attribute value of the Token. Tokens which are not used as
092     * syntactic sugar will often contain meaningful values that will be used
093     * later on by the compiler or interpreter. This attribute value is often
094     * different from the image. Any subclass of Token that actually wants to
095     * return a non-null value can override this method as appropriate.
096     */
097    public Object getValue() {
098        return null;
099    }
100
101    /**
102     * No-argument constructor
103     */
104    public Token() {
105    }
106
107    /**
108     * Constructs a new token for the specified Image.
109     */
110    public Token(int kind) {
111        this(kind, null);
112    }
113
114    /**
115     * Constructs a new token for the specified Image and Kind.
116     */
117    public Token(int kind, String image) {
118        this.kind = kind;
119        this.image = image;
120    }
121
122    /**
123     * Returns the image.
124     */
125    public String toString() {
126        return image;
127    }
128
129    /**
130     * Returns a new Token object, by default. However, if you want, you can
131     * create and return subclass objects based on the value of ofKind. Simply
132     * add the cases to the switch for all those special cases. For example, if
133     * you have a subclass of Token called IDToken that you want to create if
134     * ofKind is ID, simply add something like :
135     *
136     * case MyParserConstants.ID : return new IDToken(ofKind, image);
137     *
138     * to the following switch statement. Then you can cast matchedToken
139     * variable to the appropriate type and use sit in your lexical actions.
140     */
141    public static Token newToken(int ofKind, String image) {
142        switch (ofKind) {
143        default:
144            return new Token(ofKind, image);
145        }
146    }
147
148    public static Token newToken(int ofKind) {
149        return newToken(ofKind, null);
150    }
151
152}
153/*
154 * JavaCC - OriginalChecksum=08d08345e10cca30522247698d4478e6 (do not edit this
155 * line)
156 */