langtools/src/java.compiler/share/classes/javax/lang/model/util/TypeKindVisitor6.java
author darcy
Fri, 13 Jan 2017 19:29:55 -0800
changeset 43147 823bfbf9e914
parent 43133 08a858022ea6
child 43257 df68602dc422
permissions -rw-r--r--
8172531: Correct misstatements in javax.lang.model visitor documentation Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
43147
823bfbf9e914 8172531: Correct misstatements in javax.lang.model visitor documentation
darcy
parents: 43133
diff changeset
     2
 * Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package javax.lang.model.util;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 10192
diff changeset
    28
import javax.annotation.processing.SupportedSourceVersion;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 10192
diff changeset
    29
import javax.lang.model.SourceVersion;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import javax.lang.model.type.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
import static javax.lang.model.SourceVersion.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 * A visitor of types based on their {@linkplain TypeKind kind} with
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 * default behavior appropriate for the {@link SourceVersion#RELEASE_6
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
 * RELEASE_6} source version.  For {@linkplain
43147
823bfbf9e914 8172531: Correct misstatements in javax.lang.model visitor documentation
darcy
parents: 43133
diff changeset
    37
 * TypeMirror types} <code><i>Xyz</i></code> that may have more than one
823bfbf9e914 8172531: Correct misstatements in javax.lang.model visitor documentation
darcy
parents: 43133
diff changeset
    38
 * kind, the <code>visit<i>Xyz</i></code> methods in this class delegate
823bfbf9e914 8172531: Correct misstatements in javax.lang.model visitor documentation
darcy
parents: 43133
diff changeset
    39
 * to the <code>visit<i>Xyz</i>As<i>Kind</i></code> method corresponding to the
823bfbf9e914 8172531: Correct misstatements in javax.lang.model visitor documentation
darcy
parents: 43133
diff changeset
    40
 * first argument's kind.  The <code>visit<i>Xyz</i>As<i>Kind</i></code> methods
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 * call {@link #defaultAction defaultAction}, passing their arguments
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 * to {@code defaultAction}'s corresponding parameters.
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
 * <p> Methods in this class may be overridden subject to their
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
 * general contract.  Note that annotating methods in concrete
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
 * subclasses with {@link java.lang.Override @Override} will help
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
 * ensure that methods are overridden as intended.
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
 * <p> <b>WARNING:</b> The {@code TypeVisitor} interface implemented
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 * by this class may have methods added to it in the future to
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
 * accommodate new, currently unknown, language structures added to
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
 * future versions of the Java&trade; programming language.
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
 * Therefore, methods whose names begin with {@code "visit"} may be
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
 * added to this class in the future; to avoid incompatibilities,
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
 * classes which extend this class should not declare any instance
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
 * methods with names beginning with {@code "visit"}.
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 * <p>When such a new visit method is added, the default
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
 * implementation in this class will be to call the {@link
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
 * #visitUnknown visitUnknown} method.  A new type kind visitor class
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
 * will also be introduced to correspond to the new language level;
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
 * this visitor will have different default behavior for the visit
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
 * method in question.  When the new visitor is introduced, all or
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
 * portions of this visitor may be deprecated.
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
 * @param <R> the return type of this visitor's methods.  Use {@link
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
 *            Void} for visitors that do not need to return results.
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
 * @param <P> the type of the additional parameter to this visitor's
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
 *            methods.  Use {@code Void} for visitors that do not need an
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
 *            additional parameter.
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
 * @author Joseph D. Darcy
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
 * @author Scott Seligman
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
 * @author Peter von der Ah&eacute;
5841
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents: 5520
diff changeset
    75
 *
7a8448425bb7 6933147: Provided new utility visitors supporting SourceVersion.RELEASE_7
darcy
parents: 5520
diff changeset
    76
 * @see TypeKindVisitor7
10192
378321489bea 7025809: Provided new utility visitors supporting SourceVersion.RELEASE_8
darcy
parents: 7681
diff changeset
    77
 * @see TypeKindVisitor8
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
 * @since 1.6
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 15386
diff changeset
    79
 * @deprecated Release 6 is obsolete; update to a visitor for a newer
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 15386
diff changeset
    80
 * release level.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
 */
25690
b1dac768ab79 8050430: Provided new utility visitors supporting SourceVersion.RELEASE_9
darcy
parents: 15386
diff changeset
    82
@Deprecated
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
@SupportedSourceVersion(RELEASE_6)
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
public class TypeKindVisitor6<R, P> extends SimpleTypeVisitor6<R, P> {
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
     * Constructor for concrete subclasses to call; uses {@code null}
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
     * for the default value.
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
    protected TypeKindVisitor6() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        super(null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
     * Constructor for concrete subclasses to call; uses the argument
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
     * for the default value.
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
     * @param defaultValue the value to assign to {@link #DEFAULT_VALUE}
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    protected TypeKindVisitor6(R defaultValue) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
        super(defaultValue);
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
     * Visits a primitive type, dispatching to the visit method for
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
     * the specific {@linkplain TypeKind kind} of primitive type:
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
     * {@code BOOLEAN}, {@code BYTE}, etc.
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
     * @param t {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
     * @return  the result of the kind-specific visit method
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
    @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    public R visitPrimitive(PrimitiveType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
        TypeKind k = t.getKind();
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
        switch (k) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
        case BOOLEAN:
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
            return visitPrimitiveAsBoolean(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
        case BYTE:
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
            return visitPrimitiveAsByte(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
        case SHORT:
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
            return visitPrimitiveAsShort(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
        case INT:
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
            return visitPrimitiveAsInt(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
        case LONG:
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
            return visitPrimitiveAsLong(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
        case CHAR:
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
            return visitPrimitiveAsChar(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
        case FLOAT:
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
            return visitPrimitiveAsFloat(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
        case DOUBLE:
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
            return visitPrimitiveAsDouble(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
            throw new AssertionError("Bad kind " + k + " for PrimitiveType" + t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
     * Visits a {@code BOOLEAN} primitive type by calling
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
     * {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
     * @param t the type to visit
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
     * @param p a visitor-specified parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
    public R visitPrimitiveAsBoolean(PrimitiveType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
     * Visits a {@code BYTE} primitive type by calling
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
     * {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
     * @param t the type to visit
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
     * @param p a visitor-specified parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
    public R visitPrimitiveAsByte(PrimitiveType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
     * Visits a {@code SHORT} primitive type by calling
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
     * {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
     * @param t the type to visit
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
     * @param p a visitor-specified parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    public R visitPrimitiveAsShort(PrimitiveType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
     * Visits an {@code INT} primitive type by calling
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
     * {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
     * @param t the type to visit
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
     * @param p a visitor-specified parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
    public R visitPrimitiveAsInt(PrimitiveType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
     * Visits a {@code LONG} primitive type by calling
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
     * {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
     * @param t the type to visit
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
     * @param p a visitor-specified parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
    public R visitPrimitiveAsLong(PrimitiveType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
     * Visits a {@code CHAR} primitive type by calling
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
     * {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
     * @param t the type to visit
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
     * @param p a visitor-specified parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
    public R visitPrimitiveAsChar(PrimitiveType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
     * Visits a {@code FLOAT} primitive type by calling
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
     * {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
     * @param t the type to visit
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
     * @param p a visitor-specified parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
    public R visitPrimitiveAsFloat(PrimitiveType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
     * Visits a {@code DOUBLE} primitive type by calling
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
     * {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
     * @param t the type to visit
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
     * @param p a visitor-specified parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
    public R visitPrimitiveAsDouble(PrimitiveType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
     * Visits a {@link NoType} instance, dispatching to the visit method for
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
     * the specific {@linkplain TypeKind kind} of pseudo-type:
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
     * {@code VOID}, {@code PACKAGE}, or {@code NONE}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
     * @param t {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
     * @param p {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
     * @return  the result of the kind-specific visit method
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
    @Override
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
    public R visitNoType(NoType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
        TypeKind k = t.getKind();
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
        switch (k) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
        case VOID:
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
            return visitNoTypeAsVoid(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
        case PACKAGE:
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
            return visitNoTypeAsPackage(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
        case NONE:
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
            return visitNoTypeAsNone(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
        default:
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
            throw new AssertionError("Bad kind " + k + " for NoType" + t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
     * Visits a {@link TypeKind#VOID VOID} pseudo-type by calling
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
     * {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
     * @param t the type to visit
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
     * @param p a visitor-specified parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
    public R visitNoTypeAsVoid(NoType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
     * Visits a {@link TypeKind#PACKAGE PACKAGE} pseudo-type by calling
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
     * {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
     * @param t the type to visit
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
     * @param p a visitor-specified parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
    public R visitNoTypeAsPackage(NoType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
     * Visits a {@link TypeKind#NONE NONE} pseudo-type by calling
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
     * {@code defaultAction}.
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
     * @param t the type to visit
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
     * @param p a visitor-specified parameter
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
     * @return  the result of {@code defaultAction}
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
    public R visitNoTypeAsNone(NoType t, P p) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
        return defaultAction(t, p);
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
}